public HomeController(IAppointmentEventService appointmentEventService, ITimeSpanEventService timeSpanEventService, IDoctorService doctorService) { _appointmentEventService = appointmentEventService; _timeSpanEventService = timeSpanEventService; _doctorService = doctorService; }
public EventsController(IAppointmentEventService appointmentEventService, ITimeSpanEventService timeSpanEventService, IDoctorService doctorService, IPatientService patientService) { _appointmentEventService = appointmentEventService; _timeSpanEventService = timeSpanEventService; _doctorService = doctorService; _patientService = patientService; }
public CalendarController(ITimeSpanEventService timeSpanEventService, IUserEventsService eventsService, SiteUserManager siteUserManager, IAppointmentEventService appointmentEventService, IPatientService patientService) { _timeSpanEventService = timeSpanEventService; _eventsService = eventsService; _siteUserManager = siteUserManager; _appointmentEventService = appointmentEventService; _patientService = patientService; }
public EventController(IAppointmentEventService appointmentEventService) { _appointmentEventService = appointmentEventService; }