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