Пример #1
0
 public ConfiguringProductService(IConfiguringProductRepository configuringProductRepository,
                                  IMakeProductRepository makeProductRepository,
                                  IMobileTestingProductService mobileTestingProductService,
                                  IAuthorRepository authorRepository)
 {
     _configuringProductRepository = configuringProductRepository;
     _makeProductRepository        = makeProductRepository;
     _mobileTestingProductService  = mobileTestingProductService;
     _authorRepository             = authorRepository;
 }
Пример #2
0
 public AuthorService(IAuthorRepository authorRepository,
                      IAssemblyMmsService assemblyMmsService, ICalibrationMmsService calibrationMmsService,
                      ICalibrationProductService calibrationProductService,
                      IConfiguringMmsService configuringMmsService, IConfiguringProductService configuringProductService,
                      IMakeProductService makeProductService, IMobileTestingMmsService mobileTestingMmsService,
                      IMobileTestingProductService mobileTestingProductService,
                      IStationaryTestingMmsService stationaryTestingMmsService,
                      IStationaryTestingProductService stationaryTestingProduct,
                      IWarehouseService warehouseService
                      )
 {
     _authorRepository                = authorRepository;
     _assemblyMmsService              = assemblyMmsService;
     _calibrationMmsService           = calibrationMmsService;
     _calibrationProductService       = calibrationProductService;
     _configuringMmsService           = configuringMmsService;
     _configuringProductService       = configuringProductService;
     _makeProductService              = makeProductService;
     _mobileTestingMmsService         = mobileTestingMmsService;
     _mobileTestingProductService     = mobileTestingProductService;
     _stationaryTestingMmsService     = stationaryTestingMmsService;
     _stationaryTestingProductService = stationaryTestingProduct;
     _warehouseService                = warehouseService;
 }
 public MobileTestingProductController(IMobileTestingProductService mobileTestingProductService)
 {
     _mobileTestingProductService = mobileTestingProductService;
 }