0
이 예제에서 SudentRepository
의 목적은 무엇입니까? 왜 내가 필요한거야?MVC의 저장소 패턴 : 컨트롤러 코드 설명
public class StudentController : Controller
{
private IStudentRepository _repository;
public StudentController() : this(new StudentRepository())
{
}
public StudentController(IStudentRepository repository)
{
_repository = repository;
}