示例#1
0
 public AdminProfileCommands(
     IProfileService profileService,
     IGuildPreferences guildPreferences,
     IExperienceService experienceService,
     IGotService gotService,
     ILeaveService leaveService,
     ISpellErrorService spellErrorService,
     ISpellCorrectService spellCorrectService,
     IBoganCountService boganCountService,
     IQuietModeService quietModeService,
     ITextProcessorService textProcessorService,
     IGoldService goldService
     )
 {
     _profileService       = profileService;
     _guildPreferences     = guildPreferences;
     _experienceService    = experienceService;
     _gotService           = gotService;
     _leaveService         = leaveService;
     _spellErrorService    = spellErrorService;
     _spellCorrectService  = spellCorrectService;
     _boganCountService    = boganCountService;
     _quietModeService     = quietModeService;
     _textProcessorService = textProcessorService;
     _goldService          = goldService;
 }
示例#2
0
 public roles(
     IGuildPreferences guildPreferences,
     IAssignableRoleService assignableRoleService
     )
 {
     _guildPreferences      = guildPreferences;
     _assignableRoleService = assignableRoleService;
 }
示例#3
0
                public GuildRoleCommands(
                    IGuildPreferences guildPreferences,
                    IAssignableRoleService assignableRoleService

                    )
                {
                    _guildPreferences      = guildPreferences;
                    _assignableRoleService = assignableRoleService;
                }
示例#4
0
 public tools(
     ITextProcessorService textProcessorService,
     IProfileService profileService,
     IGuildPreferences guildPreferences)
 {
     _textProcessorService = textProcessorService;
     _profileService       = profileService;
     _guildPreferences     = guildPreferences;
 }
示例#5
0
 public Guild(
     IGuildPreferences guildPreferences,
     IAssignableRoleService assignableRoleService,
     ISpellingSettingsService spellingSettingsService
     )
 {
     _guildPreferences        = guildPreferences;
     _assignableRoleService   = assignableRoleService;
     _spellingSettingsService = spellingSettingsService;
 }
示例#6
0
 public ChannelStats(
     IGuildPreferences guildPreferences,
     IProfileService profileService,
     DbContextOptions <RPGContext> options
     )
 {
     _guildPreferences = guildPreferences;
     _profileService   = profileService;
     _options          = options;
 }
示例#7
0
 public GoldCommands(
     IProfileService profileService,
     IGotService gotService,
     IGoldService goldService,
     IGuildPreferences guildPreferences
     )
 {
     _profileService   = profileService;
     _gotService       = gotService;
     _goldService      = goldService;
     _guildPreferences = guildPreferences;
 }
示例#8
0
 public adminCommands(
     IGuildPreferences guildPreferences,
     IAssignableRoleService assignableRoleService,
     IGoldService goldService,
     IProfileService profileService
     )
 {
     _guildPreferences      = guildPreferences;
     _assignableRoleService = assignableRoleService;
     _goldService           = goldService;
     _profileService        = profileService;
 }
 public AssignableRoleService(DbContextOptions <RPGContext> options, IGuildPreferences guildPreferences)
 {
     _options          = options;
     _guildPreferences = guildPreferences;
 }
示例#10
0
 public StatChannelService(DbContextOptions <RPGContext> options, IGuildPreferences guildPreferences)
 {
     _options          = options;
     _guildPreferences = guildPreferences;
 }
示例#11
0
 public TimeoutCommands(
     IGuildPreferences guildPreferences)
 {
     _guildPreferences = guildPreferences;
 }
示例#12
0
 public SpellingSettingsService(DbContextOptions <RPGContext> options, IGuildPreferences guildPreferences)
 {
     _options          = options;
     _guildPreferences = guildPreferences;
 }