Пример #1
0
 public AppointmentService()
 {
     _appSvc = new AppointmentDetailRepository();
 }
Пример #2
0
 public AppointmentService(IAppointmentRepository appointmentRepository, IAppointmentDetailRepository appointmentDetailRepository)
 {
     _appointmentRepository       = appointmentRepository;
     _appointmentDetailRepository = appointmentDetailRepository;
 }