Ejemplo n.º 1
0
 public CompanyBookManageController(ICategoryService categoryService
                                    , ICompanySubOrderService companySubOrderService
                                    , IHospitalCalendarService hospitalCalendar
                                    , ICompanyService companyService) : base()
 {
     _categoryService         = categoryService;
     _companySubOrderService  = companySubOrderService;
     _hospitalCalendarService = hospitalCalendar;
     _companyService          = companyService;
 }
Ejemplo n.º 2
0
 public HospitalCalendarController(IHospitalCalendarService hospitalCalendar
                                   , ICompanySubOrderService companySubOrderService) : base()
 {
     _hospitalCalendarService = hospitalCalendar;
     _companySubOrderService  = companySubOrderService;
 }