Exemplo n.º 1
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;
 }
 public FormulationRequestController(FormulationRequestService formulationRequestService,
                                     UserService userService)
 {
     this._formulationRequestService = formulationRequestService;
     this._userService = userService;
 }