Interface ITagAppService
Namespace: Volo.CmsKit.Tags
Assembly: Volo.CmsKit.Common.Application.Contracts.dll
Syntax
public interface ITagAppService : IApplicationService, IRemoteService
Methods
GetAllRelatedTagsAsync(string, string)
Declaration
Task<List<TagDto>> GetAllRelatedTagsAsync(string entityType, string entityId)
Parameters
Type | Name | Description |
---|---|---|
string | entityType | |
string | entityId |
Returns
Type | Description |
---|---|
Task<List<TagDto>> |
GetPopularTagsAsync(string, int)
Declaration
Task<List<PopularTagDto>> GetPopularTagsAsync(string entityType, int maxCount)
Parameters
Type | Name | Description |
---|---|---|
string | entityType | |
int | maxCount |
Returns
Type | Description |
---|---|
Task<List<PopularTagDto>> |