public CountryService(
     ICatalogUoW catalogUoW,
     IBaseCsvReader <Country> countryCsvReader
     ) : base(catalogUoW)
 {
     this.countryCsvReader = countryCsvReader;
 }
Esempio n. 2
0
 public CarBrandService(
     ICatalogUoW catalogUow,
     ICountryService countryService,
     ICarTypeService carTypeService)
     : base(catalogUow)
 {
     this.carTypeService = carTypeService;
     this.countryService = countryService;
 }
Esempio n. 3
0
 public CarModelService(ICatalogUoW catalogUow) : base(catalogUow)
 {
 }
Esempio n. 4
0
 public CarModificationService(ICatalogUoW catalogUow) : base(catalogUow)
 {
 }
Esempio n. 5
0
 public BaseService(ICatalogUoW catalogUoW)
 {
     this.CatalogUow = catalogUoW;
 }
 public ExcelIntegrationService(ICatalogUoW catalogUow) : base(catalogUow)
 {
 }
 public CarTypeService(ICatalogUoW catalogUow) : base(catalogUow)
 {
 }