public PriceCalculationService(TolkDbContext dbContext, DateCalculationService dateCalculationService, CacheService cacheService ) { _dbContext = dbContext; _dateCalculationService = dateCalculationService; _cacheService = cacheService; }
public OrderAgreementService( TolkDbContext tolkDbContext, ILogger <OrderAgreementService> logger, ISwedishClock clock, CacheService cacheService, DateCalculationService dateCalculationService, ITolkBaseOptions options, EmailService emailService ) { _tolkDbContext = tolkDbContext; _logger = logger; _clock = clock; _cacheService = cacheService; _dateCalculationService = dateCalculationService; _options = options; _emailService = emailService; }