예제 #1
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;
 }
예제 #2
0
 public ChronometerService(FarmHeroesDbContext context, IHeroService heroService, IMapper mapper, IAmuletBagService amuletBagService)
 {
     this.context          = context;
     this.heroService      = heroService;
     this.amuletBagService = amuletBagService;
     this.mapper           = mapper;
 }
예제 #3
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;
 }
예제 #4
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;
 }
예제 #5
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;
 }
 public AmuletBagController(IAmuletBagService amuletBagService)
 {
     this.amuletBagService = amuletBagService;
 }