示例#1
0
 public ConfiguringMmsService(IConfiguringMmsRepository configuringMmsRepository,
                              IAssemblyMmsRepository assemblyMmsRepository,
                              IMobileTestingMmsService mobileTestingMmsService,
                              IAuthorRepository authorRepository)
 {
     _configuringMmsRepository = configuringMmsRepository;
     _assemblyMmsRepository    = assemblyMmsRepository;
     _mobileTestingMmsService  = mobileTestingMmsService;
     _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 MobileTestingMmsController(IMobileTestingMmsService mobileTestingMmsService)
 {
     _mobileTestingMmsService = mobileTestingMmsService;
 }