コード例 #1
0
 public HealthController(
     IHealthService healthService,
     IResourcePouchService resourcePouchService)
 {
     this.healthService        = healthService;
     this.resourcePouchService = resourcePouchService;
 }
コード例 #2
0
 public HealthService(IMapper mapper, IHeroService heroService, IResourcePouchService resourcePouchService, FarmHeroesDbContext context)
 {
     this.mapper               = mapper;
     this.heroService          = heroService;
     this.resourcePouchService = resourcePouchService;
     this.context              = context;
 }
コード例 #3
0
 public FightService(
     IHeroService heroService,
     IHealthService healthService,
     IResourcePouchService resourcePouchService,
     IChronometerService chronometerService,
     ILevelService levelService,
     IStatisticsService statisticsService,
     IMonsterService monsterService,
     INotificationService notificationService,
     IEquipmentService equipmentService,
     IAmuletBagService amuletBagService,
     FarmHeroesDbContext context,
     IMapper mapper)
 {
     this.heroService          = heroService;
     this.healthService        = healthService;
     this.resourcePouchService = resourcePouchService;
     this.chronometerService   = chronometerService;
     this.levelService         = levelService;
     this.statisticsService    = statisticsService;
     this.monsterService       = monsterService;
     this.notificationService  = notificationService;
     this.equipmentService     = equipmentService;
     this.amuletBagService     = amuletBagService;
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #4
0
 public CharacteristicsService(FarmHeroesDbContext context, IMapper mapper, IHeroService heroService, IResourcePouchService resourcePouchService, IHealthService healthService)
 {
     this.context          = context;
     this.mapper           = mapper;
     this.heroService      = heroService;
     this.resourcesService = resourcePouchService;
     this.healthService    = healthService;
 }
コード例 #5
0
 public MineService(IHeroService heroService, IResourcePouchService resourcePouchService, IStatisticsService statisticsService, IChronometerService chronometerService, IAmuletBagService amuletBagService)
 {
     this.heroService          = heroService;
     this.resourcePouchService = resourcePouchService;
     this.statisticsService    = statisticsService;
     this.chronometerService   = chronometerService;
     this.amuletBagService     = amuletBagService;
 }
コード例 #6
0
 public SmithService(IInventoryService inventoryService, IResourcePouchService resourcePouchService, FarmHeroesDbContext context, IHttpContextAccessor httpContext, ITempDataDictionaryFactory tempDataDictionaryFactory)
 {
     this.inventoryService     = inventoryService;
     this.resourcePouchService = resourcePouchService;
     this.context     = context;
     this.httpContext = httpContext;
     this.tempDataDictionaryFactory = tempDataDictionaryFactory;
 }
コード例 #7
0
 public AmuletBagService(IHeroService heroService, IEquipmentService equipmentService, IResourcePouchService resourcePouchService, FarmHeroesDbContext context, IMapper mapper, LocalizationService localizationService)
 {
     this.heroService          = heroService;
     this.equipmentService     = equipmentService;
     this.resourcePouchService = resourcePouchService;
     this.context             = context;
     this.mapper              = mapper;
     this.localizationService = localizationService;
 }
コード例 #8
0
 public InventoryService(IHeroService heroService, IResourcePouchService resourcePouchService, FarmHeroesDbContext context, IMapper mapper, IHttpContextAccessor httpContext, ITempDataDictionaryFactory tempDataDictionaryFactory)
 {
     this.heroService          = heroService;
     this.resourcePouchService = resourcePouchService;
     this.context     = context;
     this.mapper      = mapper;
     this.httpContext = httpContext;
     this.tempDataDictionaryFactory = tempDataDictionaryFactory;
 }
コード例 #9
0
 public MineController(IHeroService heroService, IMineService mineService, IChronometerService chronometerService, IMapper mapper, IStringLocalizer <MineController> stringLocalizer, IResourcePouchService resourcePouchService)
 {
     this.heroService          = heroService;
     this.mineService          = mineService;
     this.chronometerService   = chronometerService;
     this.mapper               = mapper;
     this.stringLocalizer      = stringLocalizer;
     this.resourcePouchService = resourcePouchService;
 }
コード例 #10
0
 public CharacteristicsController(
     ICharacteristicsService characteristicsService,
     IResourcePouchService resourcePouchService,
     IHealthService healthService)
 {
     this.characteristicsService = characteristicsService;
     this.resourcePouchService   = resourcePouchService;
     this.healthService          = healthService;
 }
コード例 #11
0
 public DungeonService(IResourcePouchService resourcePouchService, IHeroService heroService, IChronometerService chronometerService, IFightService fightService, INotificationService notificationService, FarmHeroesDbContext context, IMapper mapper)
 {
     this.resourcePouchService = resourcePouchService;
     this.heroService          = heroService;
     this.chronometerService   = chronometerService;
     this.fightService         = fightService;
     this.notificationService  = notificationService;
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #12
0
 public PlayerControlController(IUserService userService, IHeroService heroService, ILevelService levelService, IHealthService healthService, IResourcePouchService resourcePouchService, ICharacteristicsService characteristicsService, IChronometerService chronometerService)
 {
     this.userService            = userService;
     this.heroService            = heroService;
     this.levelService           = levelService;
     this.healthService          = healthService;
     this.resourcePouchService   = resourcePouchService;
     this.characteristicsService = characteristicsService;
     this.chronometerService     = chronometerService;
 }
コード例 #13
0
 public ShopService(FarmHeroesDbContext context, IMapper mapper, IInventoryService inventoryService, IResourcePouchService resourcePouchService, ILevelService levelService, ITempDataDictionaryFactory tempDataDictionaryFactory, IHttpContextAccessor httpContext)
 {
     this.context                   = context;
     this.mapper                    = mapper;
     this.inventoryService          = inventoryService;
     this.resourcePouchService      = resourcePouchService;
     this.levelService              = levelService;
     this.tempDataDictionaryFactory = tempDataDictionaryFactory;
     this.httpContext               = httpContext;
 }
コード例 #14
0
 public HarbourController(
     IHeroService heroService,
     IHarbourService harbourService,
     IResourcePouchService resourcePouchService,
     IPremiumFeaturesService premiumFeaturesService)
 {
     this.heroService            = heroService;
     this.harbourService         = harbourService;
     this.resourcePouchService   = resourcePouchService;
     this.premiumFeaturesService = premiumFeaturesService;
 }
コード例 #15
0
 public FarmService(IHeroService heroService, IResourcePouchService resourcePouchService, IStatisticsService statisticsService, ILevelService levelService, IChronometerService chronometerService, INotificationService notificationService, IAmuletBagService amuletBagService, ITempDataDictionaryFactory tempDataDictionaryFactory, IHttpContextAccessor context)
 {
     this.heroService               = heroService;
     this.resourcePouchService      = resourcePouchService;
     this.statisticsService         = statisticsService;
     this.levelService              = levelService;
     this.chronometerService        = chronometerService;
     this.notificationService       = notificationService;
     this.amuletBagService          = amuletBagService;
     this.tempDataDictionaryFactory = tempDataDictionaryFactory;
     this.context = context;
 }
コード例 #16
0
 public BattlefieldService(IHeroService heroService, IChronometerService chronometerService, ILevelService levelService, IResourcePouchService resourcePouchService, IStatisticsService statisticsService, INotificationService notificationService, FarmHeroesDbContext dbContext, IMapper mapper, IDailyLimitsService dailyLimitsService, IAmuletBagService amuletBagService)
 {
     this.heroService          = heroService;
     this.chronometerService   = chronometerService;
     this.levelService         = levelService;
     this.resourcePouchService = resourcePouchService;
     this.statisticsService    = statisticsService;
     this.notificationService  = notificationService;
     this.dailyLimitsService   = dailyLimitsService;
     this.amuletBagService     = amuletBagService;
     this.dbContext            = dbContext;
     this.mapper = mapper;
 }
コード例 #17
0
 public HarbourService(
     IResourcePouchService resourcePouchService,
     IChronometerService chronometerService,
     INotificationService notificationService,
     IPremiumFeaturesService premiumFeaturesService,
     IHeroService heroService,
     FarmHeroesDbContext context)
 {
     this.resourcePouchService = resourcePouchService;
     this.chronometerService = chronometerService;
     this.notificationService = notificationService;
     this.premiumFeaturesService = premiumFeaturesService;
     this.heroService = heroService;
     this.context = context;
 }
コード例 #18
0
 public HeroResourcesViewComponent(IResourcePouchService resourcePouchService)
 {
     this.resourcesService = resourcePouchService;
 }
コード例 #19
0
 public SideMenuResourcesViewComponent(IResourcePouchService resourcePouchService)
 {
     this.resourcePouchService = resourcePouchService;
 }