Esempio n. 1
0
 public ProfileAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                          , IUserContentDomainService userContentDomainService
                          , IGameDomainService gameDomainService) : base(profileBaseAppServiceCommon)
 {
     this.userContentDomainService = userContentDomainService;
     this.gameDomainService        = gameDomainService;
 }
 public FeaturedContentAppService(IBaseAppServiceCommon baseAppServiceCommon
                                  , IFeaturedContentDomainService featuredContentDomainService
                                  , IUserContentDomainService userContentDomainService) : base(baseAppServiceCommon)
 {
     this.featuredContentDomainService = featuredContentDomainService;
     this.userContentDomainService     = userContentDomainService;
 }
 public FeaturedContentAppService(IMapper mapper
                                  , IUnitOfWork unitOfWork
                                  , ICacheService cacheService
                                  , IFeaturedContentDomainService featuredContentDomainService
                                  , IUserContentDomainService userContentDomainService) : base(mapper, unitOfWork, cacheService)
 {
     this.featuredContentDomainService = featuredContentDomainService;
     this.userContentDomainService     = userContentDomainService;
 }
Esempio n. 4
0
 public ProfileAppService(IMapper mapper
                          , IUnitOfWork unitOfWork
                          , ICacheService cacheService
                          , IProfileDomainService profileDomainService
                          , IUserContentDomainService userContentDomainService
                          , IGameDomainService gameDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
 {
     this.userContentDomainService = userContentDomainService;
     this.gameDomainService        = gameDomainService;
 }
 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;
 }
 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;
 }
Esempio n. 7
0
 public ComicsAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon, IUserContentDomainService userContentDomainService) : base(profileBaseAppServiceCommon)
 {
     this.userContentDomainService = userContentDomainService;
 }