public ExchangeRateRepository(CurrencyContext dbContext, IMapper mapper) { this.dbContext = dbContext; this.mapper = mapper; this.exchangeRatesDbSet = dbContext.Set <Database.Entities.ExchangeRate>(); }
public ApiKeyRepository(CurrencyContext dbContext) { this.dbContext = dbContext; apiKeyDbSet = dbContext.Set <ApiKey>(); }