public ProfileAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon , IUserContentDomainService userContentDomainService , IGameDomainService gameDomainService) : base(profileBaseAppServiceCommon) { this.userContentDomainService = userContentDomainService; this.gameDomainService = gameDomainService; }
public JobPositionAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon , IJobPositionDomainService jobPositionDomainService , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon) { this.jobPositionDomainService = jobPositionDomainService; this.gamificationDomainService = gamificationDomainService; }
public TeamAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon , ITeamDomainService teamDomainService , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon) { this.teamDomainService = teamDomainService; this.gamificationDomainService = gamificationDomainService; }
public StudyAppService(IMediatorHandler mediator, IProfileBaseAppServiceCommon profileBaseAppServiceCommon , IStudyDomainService studyDomainService , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon) { this.mediator = mediator; this.studyDomainService = studyDomainService; this.gamificationDomainService = gamificationDomainService; }
public BrainstormAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon , IGamificationDomainService gamificationDomainService , IBrainstormDomainService brainstormDomainService) : base(profileBaseAppServiceCommon) { this.gamificationDomainService = gamificationDomainService; this.brainstormDomainService = brainstormDomainService; }
public LocalizationAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon , ILocalizationDomainService translationDomainService , IGameDomainService gameDomainService , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon) { this.translationDomainService = translationDomainService; this.gameDomainService = gameDomainService; this.gamificationDomainService = gamificationDomainService; }
public GiveawayAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon , IGiveawayDomainService giveawayDomainService , IGamificationDomainService gamificationDomainService , IShortUrlDomainService shortUrlDomainService) : base(profileBaseAppServiceCommon) { this.giveawayDomainService = giveawayDomainService; this.gamificationDomainService = gamificationDomainService; this.shortUrlDomainService = shortUrlDomainService; }
public UserContentAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon, ILogger <UserContentAppService> logger , IUserContentDomainService userContentDomainService , IGamificationDomainService gamificationDomainService , IPollDomainService pollDomainService) : base(profileBaseAppServiceCommon) { this.logger = logger; this.userContentDomainService = userContentDomainService; this.gamificationDomainService = gamificationDomainService; this.pollDomainService = pollDomainService; this.pollDomainService = pollDomainService; }
protected ProfileBaseAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon) : base(profileBaseAppServiceCommon.Mapper, profileBaseAppServiceCommon.UnitOfWork, profileBaseAppServiceCommon.CacheService) { profileDomainService = profileBaseAppServiceCommon.ProfileDomainService; }
public ComicsAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon, IUserContentDomainService userContentDomainService) : base(profileBaseAppServiceCommon) { this.userContentDomainService = userContentDomainService; }