Esempio n. 1
0
 public ProfileAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                          , IUserContentDomainService userContentDomainService
                          , IGameDomainService gameDomainService) : base(profileBaseAppServiceCommon)
 {
     this.userContentDomainService = userContentDomainService;
     this.gameDomainService        = gameDomainService;
 }
Esempio n. 2
0
 public JobPositionAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                              , IJobPositionDomainService jobPositionDomainService
                              , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.jobPositionDomainService  = jobPositionDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Esempio n. 3
0
 public TeamAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                       , ITeamDomainService teamDomainService
                       , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.teamDomainService         = teamDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Esempio n. 4
0
 public StudyAppService(IMediatorHandler mediator, IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                        , IStudyDomainService studyDomainService
                        , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.mediator                  = mediator;
     this.studyDomainService        = studyDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Esempio n. 5
0
        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;
 }
Esempio n. 7
0
 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;
 }
Esempio n. 10
0
 public ComicsAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon, IUserContentDomainService userContentDomainService) : base(profileBaseAppServiceCommon)
 {
     this.userContentDomainService = userContentDomainService;
 }