Example #1
0
 public AppointmentService()
 {
     _appSvc = new AppointmentDetailRepository();
 }
Example #2
0
 public AppointmentService(IAppointmentRepository appointmentRepository, IAppointmentDetailRepository appointmentDetailRepository)
 {
     _appointmentRepository       = appointmentRepository;
     _appointmentDetailRepository = appointmentDetailRepository;
 }