Example #1
0
        public ArticleTagsDto AddTags(Guid id, ArticleTagsDto dto)
        {
            var article = _articleDomainService.AddTags(id, dto.TagIds);

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