Ejemplo n.º 1
0
 public MachineController(SiteService siteService, PlantService plantService, MachineService machineService, LineService lineService,
                          DashboardService dashboardService, PreventiveReviewHistoryService preventiveReviewHistoryService, PreventiveMaintenanceService preventiveMaintenanceService)
 {
     this._lineService      = lineService;
     this._siteService      = siteService;
     this._plantService     = plantService;
     this._machineService   = machineService;
     this._dashboardService = dashboardService;
     this._preventiveReviewHistoryService = preventiveReviewHistoryService;
     this._preventiveMaintenanceService   = preventiveMaintenanceService;
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 3
0
 public PreventiveMaintenanceController(SiteService siteService, PlantService plantService, LineService lineService, MachineService machineService, UserService userService, PreventiveMaintenanceService pmServices, UserAssignmentsService uaServices, PreventiveWorkDescriptionService pwdServices, PreventiveReviewHistoryService prhServices, ScheduleTypeService pstServices, VendorCategoryService vcServices, VendorService vendorServices)
 {
     this._siteService    = siteService;
     this._plantService   = plantService;
     this._lineService    = lineService;
     this._machineService = machineService;
     this._userService    = userService;
     this._pmServices     = pmServices;
     this._uaServices     = uaServices;
     this._pwdServices    = pwdServices;
     this._prhServices    = prhServices;
     this._pstServices    = pstServices;
     this._vcServices     = vcServices;
     this._vendorServices = vendorServices;
 }
Ejemplo n.º 4
0
 public AccountController(UserService userService, PreventiveMaintenanceService pmServices)
 {
     this._userService = userService;
     this._pmServices  = pmServices;
 }