public ScopedCurrencyService(BankOperationsContext context, ILogger <ScopedCurrencyService> logger,
                              PrivatApiService privatApiService)
 {
     _context          = context;
     _logger           = logger;
     _privatApiService = privatApiService;
 }
 public ScopedCreditService(BankOperationsContext context,
                            ILogger <ScopedCreditService> logger,
                            IMediator mediator,
                            IBankAccountRepository bankAccountRepository)
 {
     _context  = context;
     _logger   = logger;
     _mediator = mediator;
 }
 public CreditRepository(BankOperationsContext context)
 {
     _context = context;
 }
Exemple #4
0
 public EfRepository(BankOperationsContext context, BankOperationsIdentityContext usContext)
 {
     Context  = context;
     _context = usContext;
 }
 public BankAccountEfRepository(BankOperationsContext context) => _context = context;