public SalesTaxesCalculator(ITaxesProvider taxesProvider)
 {
     _taxesProvider = taxesProvider;
 }
Beispiel #2
0
 public ProductPresentationService(ITaxesProvider taxesProvider, ICurrentCountryProvider currentCountryProvider)
 {
     this.taxesProvider          = taxesProvider;
     this.currentCountryProvider = currentCountryProvider;
 }