Ejemplo n.º 1
0
 public PurchaseServices(ApplicationDbContext context, ICurrencyPriceServices currencyPriceServices)
 {
     _context = context;
     _currencyPriceServices = currencyPriceServices;
 }
Ejemplo n.º 2
0
 public CurrencyPricesController(ApplicationDbContext context, ICurrencyPriceServices currencyPriceServices)
 {
     _context = context;
     _currencyPriceServices = currencyPriceServices;
 }