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; }
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; }
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; }
public AccountController(UserService userService, PreventiveMaintenanceService pmServices) { this._userService = userService; this._pmServices = pmServices; }