Exemple #1
0
 public ArticleAppService(IArticleDomainService articleDomainService,
                          IArticleTagDomainService articleTagDomainService,
                          ITagDomainService tagDomainService)
 {
     _articleDomainService    = articleDomainService;
     _articleTagDomainService = articleTagDomainService;
     _tagDomainService        = tagDomainService;
 }
Exemple #2
0
 public ArticleAppService(IArticleDomainService articleDomainService,
                          IArticleTagDomainService articleTagDomainService,
                          ITagDomainService tagDomainService,
                          ICategoryDomainService categoryDomainService)
 {
     this._articleDomainService    = articleDomainService;
     this._articleTagDomainService = articleTagDomainService;
     this._tagDomainService        = tagDomainService;
     this._categoryDomainService   = categoryDomainService;
 }