Exemple #1
0
 public StationaryTestingProductService(
     IStationaryTestingProductRepository stationaryTestingProductRepository,
     ICalibrationProductRepository calibrationProductRepository,
     IAuthorRepository authorRepository)
 {
     _stationaryTestingProductRepository = stationaryTestingProductRepository;
     _calibrationProductRepository       = calibrationProductRepository;
     _authorRepository = authorRepository;
 }
Exemple #2
0
 public CalibrationProductService(ICalibrationProductRepository calibrationProductRepository,
                                  IMobileTestingProductRepository mobileTestingProductRepository,
                                  IStationaryTestingProductService stationaryTestingProductService,
                                  IAuthorRepository authorRepository)
 {
     _calibrationProductRepository    = calibrationProductRepository;
     _mobileTestingProductRepository  = mobileTestingProductRepository;
     _stationaryTestingProductService = stationaryTestingProductService;
     _authorRepository = authorRepository;
 }