Ejemplo n.º 1
0
 public HarbourController(
     IHeroService heroService,
     IHarbourService harbourService,
     IResourcePouchService resourcePouchService,
     IPremiumFeaturesService premiumFeaturesService)
 {
     this.heroService            = heroService;
     this.harbourService         = harbourService;
     this.resourcePouchService   = resourcePouchService;
     this.premiumFeaturesService = premiumFeaturesService;
 }
Ejemplo n.º 2
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;
 }