public ProfileController(IProfileAppService profileAppService , INotificationAppService notificationAppService , IGamificationAppService gamificationAppService) : base() { this.profileAppService = profileAppService; this.notificationAppService = notificationAppService; this.gamificationAppService = gamificationAppService; }
public RankingController(IGamificationAppService gamificationAppService, IProfileAppService profileAppService) { this.gamificationAppService = gamificationAppService; this.profileAppService = profileAppService; }
public UserBadgeController(IGamificationAppService gamificationAppService) { this.gamificationAppService = gamificationAppService; }