public GameQueries( IRepository gameRepository, IGameWalletQueries walletQueries) { _gameRepository = gameRepository; _walletQueries = walletQueries; }
public GameCommands( IRepository repository, IGameWalletOperations walletCommands, IGameWalletQueries walletQueries, IGameEventsProcessor gameEventsProcessor) { _gameEventsProcessor = gameEventsProcessor; _walletOperations = walletCommands; _walletQueries = walletQueries; _repository = repository; }