public MatchService(ILiteDbIdentityAsyncContext liteDbContext,
                     MatchSelectedTeamSteamIdentitiesService matchSelectedTeamSteamIdentitiesService,
                     MatchSelectedSteamIdentitiesService matchSelectedSteamIdentitiesService,
                     PavlovServerService pavlovServerService,
                     SteamIdentityService steamIdentityService,
                     RconService rconService,
                     MapsService mapsService,
                     TeamService teamService,
                     PavlovServerInfoService pavlovServerInfoService,
                     PavlovServerPlayerService pavlovServerPlayerService,
                     ServerSelectedModsService serverSelectedModsService,
                     TeamSelectedSteamIdentityService teamSelectedSteamIdentityService,
                     IToastifyService notyfService)
 {
     _notifyService = notyfService;
     _liteDb        = liteDbContext;
     _matchSelectedTeamSteamIdentitiesService = matchSelectedTeamSteamIdentitiesService;
     _matchSelectedSteamIdentitiesService     = matchSelectedSteamIdentitiesService;
     _pavlovServerService = pavlovServerService;
     _teamService         = teamService;
     _teamSelectedSteamIdentityService = teamSelectedSteamIdentityService;
     _steamIdentityService             = steamIdentityService;
     _rconService = rconService;
     _mapsService = mapsService;
     _pavlovServerPlayerService = pavlovServerPlayerService;
     _pavlovServerInfoService   = pavlovServerInfoService;
     _serverSelectedModsService = serverSelectedModsService;
 }
Beispiel #2
0
 public TeamService(ILiteDbIdentityAsyncContext liteDbContext,
                    TeamSelectedSteamIdentityService teamSelectedSteamIdentityService)
 {
     _liteDb = liteDbContext;
     _selectedSteamIdentityService = teamSelectedSteamIdentityService;
 }