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; }
public WalletController(WalletTransactionService walletTransactionService, IWalletTransactionQuery walletTransactionQuery) { this.walletTransactionService = walletTransactionService; this.walletTransactionQuery = walletTransactionQuery; }