public CompanyOrderManageController(ICompanyOrderService companyOrderService
                                     , ICompanySubOrderService companySubOrderService
                                     , ICompanyEmployeeService companyEmployeeService
                                     , ICompanyService companyService)
 {
     _companyOrderService    = companyOrderService;
     _companySubOrderService = companySubOrderService;
     _companyEmployeeService = companyEmployeeService;
     _companyService         = companyService;
 }
 public CompanyBookManageController(ICategoryService categoryService
                                    , ICompanySubOrderService companySubOrderService
                                    , IHospitalCalendarService hospitalCalendar
                                    , ICompanyService companyService) : base()
 {
     _categoryService         = categoryService;
     _companySubOrderService  = companySubOrderService;
     _hospitalCalendarService = hospitalCalendar;
     _companyService          = companyService;
 }
 public HospitalCalendarController(IHospitalCalendarService hospitalCalendar
                                   , ICompanySubOrderService companySubOrderService) : base()
 {
     _hospitalCalendarService = hospitalCalendar;
     _companySubOrderService  = companySubOrderService;
 }