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;
 }
예제 #2
0
 public BattlefieldController(IHeroService heroService, IBattlefieldService battlefieldService, IFightService fightService, IChronometerService chronometerService, IStringLocalizer <BattlefieldController> stringLocalizer)
 {
     this.heroService        = heroService;
     this.battlefieldService = battlefieldService;
     this.fightService       = fightService;
     this.chronometerService = chronometerService;
     this.stringLocalizer    = stringLocalizer;
 }
예제 #3
0
 public GameController(ILogger <GameController> logger, IBattlefieldService battlefieldService)
 {
     _logger             = logger;
     _battlefieldService = battlefieldService;
 }