예제 #1
0
 public MobileTestingMmsService(IMobileTestingMmsRepository mobileTestingMmsRepository,
                                IConfiguringMmsRepository configuringMmsRepository,
                                ICalibrationMmsService calibrationMmsService,
                                IAuthorRepository authorRepository)
 {
     _mobileTestingMmsRepository = mobileTestingMmsRepository;
     _configuringMmsRepository   = configuringMmsRepository;
     _calibrationMmsService      = calibrationMmsService;
     _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;
 }
예제 #3
0
 public CalibrationMmsController(ICalibrationMmsService calibrationMmsService)
 {
     _calibrationMmsService = calibrationMmsService;
 }