Пример #1
0
 public IList <TagDto> GetList(QueryTagInput dto)
 {
     return(_tagAppService.GetList(dto));
 }
Пример #2
0
 public IList<TagDto> GetList(QueryTagInput dto)
 {
     return _tagDomainService.GetAll(t => t.Name.Contains(dto.Name))
                 .ProjectTo<TagDto>()
                 .ToList();
 }