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; }
public ServerSelectedModsService(ILiteDbIdentityAsyncContext liteDbContext, SteamIdentityService steamIdentityService, UserService userService, IToastifyService notyfService) { _notifyService = notyfService; _liteDb = liteDbContext; _steamIdentityService = steamIdentityService; _userService = userService; }
public RconService(SteamIdentityService steamIdentityService, MapsService mapsService, PavlovServerInfoService pavlovServerInfoService, PavlovServerPlayerService pavlovServerPlayerService, SshServerSerivce sshServerSerivce, PavlovServerService pavlovServerService, PavlovServerPlayerHistoryService pavlovServerPlayerHistoryService, ServerBansService serverBansService, ServerSelectedMapService serverSelectedMapService, SteamIdentityStatsServerService steamIdentityStatsServerService, IToastifyService notyfService) { _notifyService = notyfService; _mapsService = mapsService; _pavlovServerInfoService = pavlovServerInfoService; _pavlovServerService = pavlovServerService; _pavlovServerPlayerService = pavlovServerPlayerService; _pavlovServerPlayerHistoryService = pavlovServerPlayerHistoryService; _steamIdentityService = steamIdentityService; _sshServerSerivce = sshServerSerivce; _serverBansService = serverBansService; _serverSelectedMapService = serverSelectedMapService; _steamIdentityStatsServerService = steamIdentityStatsServerService; }