Example #1
0
        public IEnumerable <TagDto> GetTagsForDefect(Guid defectId)
        {
            ICollection <Tag>    tags    = _defectApiService.GetTags(defectId);
            IEnumerable <TagDto> tagDtos = _mapper.Map <IEnumerable <TagDto> >(tags);

            return(tagDtos);
        }