public ExchangeCurrencyQuery(CAASystemDataContext context)
 {
     _context = context;
 }
 public RecommendationController(CAASystemDataContext context, IExchangeCurrencyQuery currencyExchangeQuery, IExchangeCurrencyHttpQuery exchangeRateQuery)
 {
     _context = context;
     _currencyExchangeQuery = currencyExchangeQuery;
     _exchangeRateQuery     = exchangeRateQuery;
 }
Example #3
0
 public CurrencyExchangeRepository(CAASystemDataContext context)
 {
     _context = context;
 }