コード例 #1
0
ファイル: ArticleAppService.cs プロジェクト: allonlu/KBWebAPI
        public ArticleTagsDto AddTags(Guid id, ArticleTagsDto dto)
        {
            var article = _articleDomainService.AddTags(id, dto.TagIds);

            return(Mapper.Map <ArticleTagsDto>(article));
        }