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;
 }
 public ComputerUsingHistoryController(IErrorService errorService, IComputerUsingHistoryService computerUsingHistory) : base(errorService)
 {
     _computerUsingHistoryService = computerUsingHistory;
 }