Exemple #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;
 }
Exemple #2
0
 public tools(
     ITextProcessorService textProcessorService,
     IProfileService profileService,
     IGuildPreferences guildPreferences)
 {
     _textProcessorService = textProcessorService;
     _profileService       = profileService;
     _guildPreferences     = guildPreferences;
 }
Exemple #3
0
 public TextAnalytics(IConfiguration configuration, ITextProcessorService textProcessor)
     : base(configuration)
 {
     _textProcessor = textProcessor;
 }