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