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;
 }