public IList <TagDto> GetList(QueryTagInput dto) { return(_tagAppService.GetList(dto)); }
public IList<TagDto> GetList(QueryTagInput dto) { return _tagDomainService.GetAll(t => t.Name.Contains(dto.Name)) .ProjectTo<TagDto>() .ToList(); }