Пример #1
0
 public BetService(IBetRepository betRepository, IBetQuery betQuery, IGameQuery gameQuery, IWalletTransactionQuery walletTransactionQuery, WalletTransactionService walletTransactionService)
 {
     this.betRepository            = betRepository;
     this.betQuery                 = betQuery;
     this.gameQuery                = gameQuery;
     this.walletTransactionQuery   = walletTransactionQuery;
     this.walletTransactionService = walletTransactionService;
 }
Пример #2
0
 public WalletController(WalletTransactionService walletTransactionService, IWalletTransactionQuery walletTransactionQuery)
 {
     this.walletTransactionService = walletTransactionService;
     this.walletTransactionQuery   = walletTransactionQuery;
 }