public ComputerController(IErrorService errorService, IComputerService computerService, IDeparmentTypeService deparmentTypeService, IComputerTypeService computerTypeService, IProducerTypeService producerTypeService ) : base(errorService) { _computerService = computerService; _deparmentTypeService = deparmentTypeService; _computerTypeService = computerTypeService; _producerTypeService = producerTypeService; }
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 ComputerTypeController(IErrorService errorService, IComputerTypeService computerTypeService) : base(errorService) { _computerTypeService = computerTypeService; }
public ComputerTypeController(IComputerTypeService computerTypeService) { _computerTypeService = computerTypeService; }