Exemplo n.º 1
0
 public ComputerController(IErrorService errorService, IComputerService computerService,
                           IDeparmentTypeService deparmentTypeService, IComputerTypeService computerTypeService,
                           IProducerTypeService producerTypeService
                           ) :
     base(errorService)
 {
     _computerService      = computerService;
     _deparmentTypeService = deparmentTypeService;
     _computerTypeService  = computerTypeService;
     _producerTypeService  = producerTypeService;
 }
Exemplo n.º 2
0
 public FakeDataController(
     IErrorService errorService,
     IComputerService computerService,
     IComputerTypeService computerTypeService,
     IDeparmentTypeService deparmentTypeService,
     IProducerTypeService producerTypeService,
     IComputerUsingHistoryService computerUsingHistoryService) :
     base(errorService)
 {
     this._computerService        = computerService;
     _computerTypeService         = computerTypeService;
     _deparmentTypeService        = deparmentTypeService;
     _producerTypeService         = producerTypeService;
     _computerUsingHistoryService = computerUsingHistoryService;
 }
Exemplo n.º 3
0
 public DeparmentTypeController(IErrorService errorService, IDeparmentTypeService deparmentTypeService) : base(errorService)
 {
     _deparmentTypeService = deparmentTypeService;
 }