Пример #1
0
 public FunCommands(IProfileService profileService, IExperienceService experienceService, IGotService gotService, IStatsService statsService)
 {
     _profileService    = profileService;
     _experienceService = experienceService;
     _gotService        = gotService;
     _statsService      = statsService;
 }
Пример #2
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;
 }
Пример #3
0
 public GambleCommands(IProfileService profileService, IExperienceService experienceService, IGotService gotService, ILeaveService leaveService, IGoldService goldService)
 {
     _profileService    = profileService;
     _experienceService = experienceService;
     _gotService        = gotService;
     _leaveService      = leaveService;
     _goldService       = goldService;
 }
Пример #4
0
 public GoldCommands(
     IProfileService profileService,
     IGotService gotService,
     IGoldService goldService,
     IGuildPreferences guildPreferences
     )
 {
     _profileService   = profileService;
     _gotService       = gotService;
     _goldService      = goldService;
     _guildPreferences = guildPreferences;
 }