Пример #1
0
 public TodayEventsViewComponent(
     IDungeonService dungeonService,
     IRaidService raidService)
 {
     this.dungeonService = dungeonService;
     this.raidService    = raidService;
 }
 public WorkCompletionActionFilter(IHeroService heroService, IBattlefieldService battlefieldService, IFarmService farmService, IDungeonService dungeonService, IHarbourService harbourService)
 {
     this.heroService        = heroService;
     this.battlefieldService = battlefieldService;
     this.farmService        = farmService;
     this.dungeonService     = dungeonService;
     this.harbourService     = harbourService;
 }
 public DungeonsController(
     UserManager <WowGuildManagerUser> userManager,
     IDungeonService dungeonService,
     ICharacterService characterService)
 {
     this.userManager      = userManager;
     this.dungeonService   = dungeonService;
     this.characterService = characterService;
 }
Пример #4
0
 public DungeonController(IDungeonService dungeonService,
                          IOptionService optionService,
                          IMapper mapper,
                          ILogger <DungeonController> logger)
 {
     _optionService  = optionService;
     _dungeonService = dungeonService;
     _mapper         = mapper;
     _logger         = logger;
 }
 public EventsController(
     UserManager <WowGuildManagerUser> userManager,
     IDungeonService dungeonService,
     IRaidService raidService,
     ICharacterService charactersService)
 {
     this.userManager       = userManager;
     this.dungeonService    = dungeonService;
     this.raidService       = raidService;
     this.charactersService = charactersService;
 }
Пример #6
0
 public DungeonController(IDungeonService dungeonService)
 {
     this.dungeonService = dungeonService;
 }
 public DungeonsController(IDungeonService dungeonService)
 {
     _dungeonService = dungeonService;
 }
Пример #8
0
 public ContextSeedData(IDungeonService dungeonService, Context context)
 {
     _context        = context;
     _dungeonService = dungeonService;
 }