Example #1
0
 public EpgpModule(
     IPriorityReportingService priorityReportingService,
     IQueryService queryService,
     IEpgpService epgpService,
     IAuditService auditService,
     IEpgpCalculator epgpCalculator,
     IEpgpConfigurationService epgpConfigurationService,
     IPageService pageService,
     IDocumentationService documentationService,
     IEmoteService emoteService,
     IAliasService aliasService,
     IItemService itemService,
     IRaidService raidService,
     IAdministrationService administrationService,
     BuzzBotDbContext dbContext, IUserService userService, IMapper mapper, IDecayProcessor decayProcessor)
 {
     _priorityReportingService = priorityReportingService;
     _queryService             = queryService;
     _epgpService              = epgpService;
     _auditService             = auditService;
     _epgpCalculator           = epgpCalculator;
     _epgpConfigurationService = epgpConfigurationService;
     _pageService              = pageService;
     _documentationService     = documentationService;
     _emoteService             = emoteService;
     _aliasService             = aliasService;
     _itemService              = itemService;
     _raidService              = raidService;
     _administrationService    = administrationService;
     _dbContext      = dbContext;
     _userService    = userService;
     _mapper         = mapper;
     _decayProcessor = decayProcessor;
 }
Example #2
0
 public TodayEventsViewComponent(
     IDungeonService dungeonService,
     IRaidService raidService)
 {
     this.dungeonService = dungeonService;
     this.raidService    = raidService;
 }
 public GuildController(
     IRaidService raidService,
     IGuildService guildService)
 {
     this.raidService  = raidService;
     this.guildService = guildService;
 }
Example #4
0
 public OcrService(IConfigurationService configurationService, IGymService gymService, IPokemonService pokemonService, IRaidService raidService, ILocalizationService localizationService)
 {
     ConfigurationService = configurationService;
     GymService           = gymService;
     PokemonService       = pokemonService;
     RaidService          = raidService;
     LocalizationService  = localizationService;
 }
Example #5
0
 public RaidsController(
     UserManager<WowGuildManagerUser> userManager,
     IRaidService raidService, 
     ICharacterService characterService)
 {
     this.userManager = userManager;
     this.raidService = raidService;
     this.characterService = characterService;
 }
 public EventsController(
     UserManager <WowGuildManagerUser> userManager,
     IDungeonService dungeonService,
     IRaidService raidService,
     ICharacterService charactersService)
 {
     this.userManager       = userManager;
     this.dungeonService    = dungeonService;
     this.raidService       = raidService;
     this.charactersService = charactersService;
 }
Example #7
0
 public RaidModule(
     IRaidService raidService,
     IRaidFactory raidFactory,
     IEpgpConfigurationService epgpConfigurationService,
     IDocumentationService documentationService,
     IPageService pageService)
 {
     _raidService = raidService;
     _raidFactory = raidFactory;
     _epgpConfigurationService = epgpConfigurationService;
     _documentationService     = documentationService;
     _pageService = pageService;
 }
 public GuildService(
     UserManager <WowGuildManagerUser> userManager,
     WowGuildManagerDbContext context,
     IRaidService raidService,
     ICharacterService characterService,
     IMapper mapper)
 {
     this.userManager      = userManager;
     this.context          = context;
     this.raidService      = raidService;
     this.characterService = characterService;
     this.mapper           = mapper;
 }
 public RaidModule(IRaidService raidService, IEmojiService emojiService, IConfigurationService configurationService, IOcrService ocrService, ILocalizationService localizationService)
     : base(configurationService, emojiService, localizationService)
 {
     RaidService = raidService;
     OcrService  = ocrService;
 }
Example #10
0
 public RaidsController(IRaidService service)
 {
     this.service = service;
 }
Example #11
0
 public GuildProgressViewComponent(
     IRaidService raidService)
 {
     this.raidService = raidService;
 }