Exemplo n.º 1
0
 public JobPositionAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                              , IJobPositionDomainService jobPositionDomainService
                              , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.jobPositionDomainService  = jobPositionDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 2
0
 public TeamAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                       , ITeamDomainService teamDomainService
                       , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.teamDomainService         = teamDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 3
0
 public StudyAppService(IMediatorHandler mediator, IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                        , IStudyDomainService studyDomainService
                        , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.mediator                  = mediator;
     this.studyDomainService        = studyDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 4
0
        public BrainstormAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                                    , IGamificationDomainService gamificationDomainService
                                    , IBrainstormDomainService brainstormDomainService) : base(profileBaseAppServiceCommon)
        {
            this.gamificationDomainService = gamificationDomainService;

            this.brainstormDomainService = brainstormDomainService;
        }
Exemplo n.º 5
0
 public PollAppService(IUnitOfWork unitOfWork
                       , IPollDomainService pollDomainService
                       , IGamificationDomainService gamificationDomainService)
 {
     this.unitOfWork                = unitOfWork;
     this.pollDomainService         = pollDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 6
0
 public StudyAppService(IMapper mapper, IUnitOfWork unitOfWork,
                        ICacheService cacheService,
                        IProfileDomainService profileDomainService,
                        IStudyDomainService studyDomainService,
                        IGamificationDomainService gamificationDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
 {
     this.studyDomainService        = studyDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 7
0
 public LocalizationAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                               , ILocalizationDomainService translationDomainService
                               , IGameDomainService gameDomainService
                               , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.translationDomainService  = translationDomainService;
     this.gameDomainService         = gameDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 8
0
 public GiveawayAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                           , IGiveawayDomainService giveawayDomainService
                           , IGamificationDomainService gamificationDomainService
                           , IShortUrlDomainService shortUrlDomainService) : base(profileBaseAppServiceCommon)
 {
     this.giveawayDomainService     = giveawayDomainService;
     this.gamificationDomainService = gamificationDomainService;
     this.shortUrlDomainService     = shortUrlDomainService;
 }
 public JobPositionAppService(IMapper mapper
                              , IUnitOfWork unitOfWork
                              , ICacheService cacheService
                              , IProfileDomainService profileDomainService
                              , IJobPositionDomainService jobPositionDomainService
                              , IGamificationDomainService gamificationDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
 {
     this.jobPositionDomainService  = jobPositionDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 10
0
 public TeamAppService(IMapper mapper
                       , IUnitOfWork unitOfWork
                       , ICacheService cacheService
                       , ITeamDomainService teamDomainService
                       , IProfileDomainService profileDomainService
                       , IGamificationDomainService gamificationDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
 {
     this.teamDomainService         = teamDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 11
0
 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;
 }
Exemplo n.º 12
0
        public BrainstormAppService(IMapper mapper
                                    , IUnitOfWork unitOfWork
                                    , ICacheService cacheService
                                    , IProfileDomainService profileDomainService
                                    , IGamificationDomainService gamificationDomainService
                                    , IBrainstormDomainService brainstormDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
        {
            this.gamificationDomainService = gamificationDomainService;

            this.brainstormDomainService = brainstormDomainService;
        }
Exemplo n.º 13
0
 public LocalizationAppService(IMapper mapper
                               , IUnitOfWork unitOfWork
                               , ICacheService cacheService
                               , IProfileDomainService profileDomainService
                               , ILocalizationDomainService translationDomainService
                               , IGameDomainService gameDomainService
                               , IGamificationDomainService gamificationDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
 {
     this.translationDomainService  = translationDomainService;
     this.gameDomainService         = gameDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 14
0
 public UserContentAppService(ILogger <UserContentAppService> logger
                              , IMapper mapper
                              , IUnitOfWork unitOfWork
                              , ICacheService cacheService
                              , IProfileDomainService profileDomainService
                              , IUserContentDomainService userContentDomainService
                              , IGamificationDomainService gamificationDomainService
                              , IPollDomainService pollDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
 {
     this.logger = logger;
     this.userContentDomainService  = userContentDomainService;
     this.gamificationDomainService = gamificationDomainService;
     this.pollDomainService         = pollDomainService;
     this.pollDomainService         = pollDomainService;
 }
Exemplo n.º 15
0
 public GamificationAppService(IMapper mapper, IGamificationDomainService gamificationDomainService)
 {
     this.mapper = mapper;
     this.gamificationDomainService = gamificationDomainService;
 }
Exemplo n.º 16
0
 public SaveCourseCommandHandler(IUnitOfWork unitOfWork, IStudyCourseRepository studyCourseRepository, IGamificationDomainService gamificationDomainService)
 {
     this.unitOfWork                = unitOfWork;
     this.studyCourseRepository     = studyCourseRepository;
     this.gamificationDomainService = gamificationDomainService;
 }