示例#1
0
        public IndentsController(IndentServices indentService, SiteService siteService, PlantService plantService, VendorCategoryService vcServices, VendorService vendorServices, MaintenancePriorityTypeServices mtpService)

        {
            this._indentService  = indentService;
            this._siteService    = siteService;
            this._plantService   = plantService;
            this._vcServices     = vcServices;
            this._vendorServices = vendorServices;
            this._mtpService     = mtpService;
        }
示例#2
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;
 }