Exemplo n.º 1
0
 public ArticleController(ArticleContentService _articleContentService, ArticleCommentService _articleCommentService, ArticleAttentionService _articleAttentionService, ArticleCollectService _articleCollectService, ArticleCategoryService _articleCategoryService)
 {
     this.articleContentService = _articleContentService;
     this.articleCommentService = _articleCommentService;
     this.articleAttentionService = _articleAttentionService;
     this.articleCollectService = _articleCollectService;
     this.articleCategoryService = _articleCategoryService;
 }
 public ArticleCollectService(ArticleCategoryService _articleCategoryService, MemberService _memberService, ArticleContentService _articleContentService)
 {
     this.memberService = _memberService;
     this.articleCategoryService = _articleCategoryService;
     this.articleContentService = _articleContentService;
 }