Beispiel #1
0
 public CompetitionSetup(ELOService service, GuildService prefix, PatreonIntegration patreonIntegration, ELOMigrator migrator, LegacyIntegration legacy)
 {
     this.Prefix        = prefix;
     PatreonIntegration = patreonIntegration;
     Migrator           = migrator;
     Legacy             = legacy;
     Service            = service;
 }
Beispiel #2
0
 public Developer(IDatabase database, Random random, ELOService service, PatreonIntegration prem, ELOMigrator migrator, LocalManagementService local)
 {
     Database       = database;
     Random         = random;
     Service        = service;
     PremiumService = prem;
     Migrator       = migrator;
     Local          = local;
 }
Beispiel #3
0
 public GameManagement(ELOService service)
 {
     Service = service;
 }
Beispiel #4
0
 public UserManagement(ELOService service)
 {
     Service = service;
 }
Beispiel #5
0
 public ScoreManagement(ELOService service)
 {
     Service = service;
 }
Beispiel #6
0
 public LobbySetup(ELOService service)
 {
     Service = service;
 }
Beispiel #7
0
 public Info(ELOService service)
 {
     Service = service;
 }
Beispiel #8
0
 public UserCommands(ELOService service, PatreonIntegration prem)
 {
     Service = service;
     Premium = prem;
 }
Beispiel #9
0
 public ManagementSetup(ELOService service, CommandService commandService)
 {
     Service        = service;
     CommandService = commandService;
 }
Beispiel #10
0
 public LobbyManagement(ELOService service, Random random)
 {
     Service = service;
     Random  = random;
 }