public AccountDeletedConsumer(IExchangeAccountService exchangeAccounts)
 {
     this.exchangeAccounts = exchangeAccounts;
 }
Пример #2
0
 public RequestService(RequestsDbContext dbContext, IExchangeAccountService exchangeAccounts, IBus publisher)
     : base(dbContext)
 {
     this.exchangeAccounts = exchangeAccounts;
     this.publisher        = publisher;
 }
Пример #3
0
 public RequestsController(IRequestService requests, IClientService clients, IExchangeAccountService exchangeAccounts)
 {
     this.requests         = requests;
     this.clients          = clients;
     this.exchangeAccounts = exchangeAccounts;
 }
Пример #4
0
 public ExchangeAccountsController(ICurrentUserService currentUser, IExchangeAccountService exchangeAccounts)
 {
     this.exchangeAccounts = exchangeAccounts;
     this.currentUser      = currentUser;
 }