public ActionNotifierDecorator(IMediator decorated, IDbContextLocator locator, IGameSwitcher gameSwitcher,
                                INetworkContentSyncer networkSyncer) : base(decorated)
 {
     _locator       = locator;
     _gameSwitcher  = gameSwitcher;
     _networkSyncer = networkSyncer;
 }
Пример #2
0
 public SelectGameHandler(IDbContextLocator dbContextLocator, IGameSwitcher gameSwitcher)
     : base(dbContextLocator)
 {
     _gameSwitcher = gameSwitcher;
 }