public MobileTestingMmsService(IMobileTestingMmsRepository mobileTestingMmsRepository, IConfiguringMmsRepository configuringMmsRepository, ICalibrationMmsService calibrationMmsService, IAuthorRepository authorRepository) { _mobileTestingMmsRepository = mobileTestingMmsRepository; _configuringMmsRepository = configuringMmsRepository; _calibrationMmsService = calibrationMmsService; _authorRepository = authorRepository; }
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 CalibrationMmsController(ICalibrationMmsService calibrationMmsService) { _calibrationMmsService = calibrationMmsService; }