public AppointmentController()
 {
     _appointmentService     = new AppointmentService();
     _appointmentTypeService = new AppointmentTypeService();
 }
Beispiel #2
0
 public AppointmentTypesController(IAppointmentTypeService appointmentTypeService)
 {
     _appointmentTypeService = appointmentTypeService;
 }
 public AppointmentTypeController(IAppointmentTypeService service)
 {
     _service = service;
 }