Exemplo n.º 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;
        }
Exemplo n.º 2
0
 public MaintenanceRequestController(MaintenanceRequestServices mrServices, SiteService siteService, PlantService plantService, LineService lineService, MachineService machineService, MaintenancePriorityTypeServices mtpService, StatusServices statusService, UserService userService)
 {
     this._mrServices     = mrServices;
     this._siteService    = siteService;
     this._plantService   = plantService;
     this._lineService    = lineService;
     this._machineService = machineService;
     this._mtpService     = mtpService;
     this._statusService  = statusService;
     this._userService    = userService;
 }