Esempio n. 1
0
 public HomeController(IAppointmentEventService appointmentEventService,
     ITimeSpanEventService timeSpanEventService, IDoctorService doctorService)
 {
     _appointmentEventService = appointmentEventService;
     _timeSpanEventService = timeSpanEventService;
     _doctorService = doctorService;
 }
Esempio n. 2
0
 public EventsController(IAppointmentEventService appointmentEventService,
     ITimeSpanEventService timeSpanEventService, IDoctorService doctorService, IPatientService patientService)
 {
     _appointmentEventService = appointmentEventService;
     _timeSpanEventService = timeSpanEventService;
     _doctorService = doctorService;
     _patientService = patientService;
 }
Esempio n. 3
0
 public CalendarController(ITimeSpanEventService timeSpanEventService, IUserEventsService eventsService,
     SiteUserManager siteUserManager, IAppointmentEventService appointmentEventService,
     IPatientService patientService)
 {
     _timeSpanEventService = timeSpanEventService;
     _eventsService = eventsService;
     _siteUserManager = siteUserManager;
     _appointmentEventService = appointmentEventService;
     _patientService = patientService;
 }
Esempio n. 4
0
 public EventController(IAppointmentEventService appointmentEventService)
 {
     _appointmentEventService = appointmentEventService;
 }