Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public ExtendedProfileCommands(
     IProfileService profileService,
     IQuietModeService quietModeService,
     IMimicableService mimicableService,
     IRobbingItemService robbingItemService
     )
 {
     _profileService     = profileService;
     _quietModeService   = quietModeService;
     _mimicableService   = mimicableService;
     _robbingItemService = robbingItemService;
 }