Esempio n. 1
0
 public ScheduleManager(BanobatDbContext dbContext, IDoctorServiceManager doctorServiceManager, IServiceSupplyManager serviceSupplyManager, IScheduleService scheduleService, IAppointmentService appointmentService)
 {
     _dbContext            = dbContext;
     _doctorServiceManager = doctorServiceManager;
     _serviceSupplyManager = serviceSupplyManager;
     _scheduleService      = scheduleService;
     _appointmentService   = appointmentService;
 }
Esempio n. 2
0
 public DoctorServiceManager(IServiceSupplyService serviceSupplyService, IServiceSupplyManager serviceSupplyManager, IIPAsManager iPAsManager)
 {
     _serviceSupplyService = serviceSupplyService;
     _serviceSupplyManager = serviceSupplyManager;
     _iPAsManager          = iPAsManager;
 }