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 HarbourController(
     IHeroService heroService,
     IHarbourService harbourService,
     IResourcePouchService resourcePouchService,
     IPremiumFeaturesService premiumFeaturesService)
 {
     this.heroService            = heroService;
     this.harbourService         = harbourService;
     this.resourcePouchService   = resourcePouchService;
     this.premiumFeaturesService = premiumFeaturesService;
 }