Exemple #1
0
 public AssemblyMmsService(
     IAssemblyMmsRepository assemblyMmsRepository,
     IAccelerometerRepository accelerometerRepository,
     IGyroscopeRepository gyroscopeRepository,
     IConfiguringMmsService configuringMmsService,
     IMakeProductService makeProductService,
     IAuthorRepository authorRepository,
     IConsignmentRepository consignmentRepository)
 {
     _assemblyMmsRepository   = assemblyMmsRepository;
     _accelerometerRepository = accelerometerRepository;
     _gyroscopeRepository     = gyroscopeRepository;
     _configuringMmsService   = configuringMmsService;
     _makeProductService      = makeProductService;
     _authorRepository        = authorRepository;
     _consignmentRepository   = consignmentRepository;
 }
Exemple #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;
 }
Exemple #3
0
 public ConfiguringMmsController(IConfiguringMmsService configuringMmsService)
 {
     _configuringMmsService = configuringMmsService;
 }