public SessionsController(ISessionRepository sessionRepository, ILocationRepository locationRepository, IInstructorRepostiory instructorRepository)
 {
     _sessionRepository = sessionRepository;
     _locationRepository = locationRepository;
     _instructorRepostiory = instructorRepository;
 }
示例#2
0
 public InstructorController(IInstructorRepostiory repostiory, ICourseRepository courseRepository)
 {
     _repository       = repostiory;
     _courseRepository = courseRepository;
 }