public RequestHandler(
     IUnitOfWorkAsync uow, IQueryRepositoryFactory qrf,
     ICatalogGateway catalogGateway, INoTaxPriceCalculator priceCalculator) : base(uow, qrf)
 {
     _catalogGateway  = catalogGateway;
     _priceCalculator = priceCalculator;
 }
Exemple #2
0
 public RequestHandler(ICatalogGateway cgw, IQueryRepositoryFactory qrf, INoTaxPriceCalculator priceCalculator)
     : base(qrf)
 {
     _catalogGateway  = cgw;
     _priceCalculator = priceCalculator;
 }