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