public CurrencyRatingManager(ICurrencyRatingDal currencyRatingDal, IEvdsService evdsService, ICurrencyService currencyService)
 {
     _currencyRatingDal = currencyRatingDal;
     _evdsService       = evdsService;
     _currencyService   = currencyService;
 }
 public ApiController(IEvdsService evdsService)
 {
     _evdsService = evdsService;
 }
Exemple #3
0
 public CurrencyManager(IEvdsService evdsService, ICurrencyDal currencyDal)
 {
     _evdsService = evdsService;
     _currencyDal = currencyDal;
 }