3. Models 폴더에 IUserRepository.cs 파일로 인터페이스를 생성하고 다음 코드와 같이 메서드 시그니처를 작성해 리파지터리 클래스에서 상속 받아 사용하도록 하자.
▼ DotNetNote 프로젝트 - /Models/IUserRepository.cs
//[User][3]
namespace DotNetNote.Models
{
public interface IUserRepository
{
void AddUser(string userId, string password);
UserViewModel GetUserByUserId(string userId);
bool IsCorrectUser(string userId, string password);
void ModifyUser(int uid, string userId, string password);
}
}