コード例 #1
0
ファイル: HomeController.cs プロジェクト: kamal622/ProERP
 public HomeController(PreventiveMaintenanceService pmServices, PreventiveReviewHistoryService prhServices, PreventiveHoldHistoryService phhServices, BreakdownService breakDownService, PlantService plantService, MaintenanceRequestServices mrServices, StatusServices statusService, LineService lineService, UserService userService, FormulationRequestService formulationRequestService)
 {
     this._pmServices                = pmServices;
     this._prhServices               = prhServices;
     this._phhServices               = phhServices;
     this._breakDownService          = breakDownService;
     this._plantService              = plantService;
     this._mrServices                = mrServices;
     this._statusService             = statusService;
     this._lineService               = lineService;
     this._userService               = userService;
     this._formulationRequestService = formulationRequestService;
 }
コード例 #2
0
 public BreakdownController(/*ApplicationUserManager userManager,*/ SiteService siteService, PlantService plantService, LineService lineService, MachineService machineService,
                            BreakdownService breakDownService, VendorService vendorServices, PartService partServices,
                            EmployeeTypeService etServices, BreakDownAttachmentServices breakdownattachmentServices)
 {
     this._siteService    = siteService;
     this._plantService   = plantService;
     this._lineService    = lineService;
     this._machineService = machineService;
     //this._subAssemblyService = subAssemblyService;
     this._breakDownService = breakDownService;
     this._vendorServices   = vendorServices;
     //this._userManager = userManager;
     this._partServices = partServices;
     this._etServices   = etServices;
     this._breakdownattachmentServices = breakdownattachmentServices;
 }