public async Task GetAllRelatedTagsAsync() { var list = await _tagAppService.GetAllRelatedTagsAsync(_cmsKitTestData.Content_1_EntityType, _cmsKitTestData.EntityId1); list.ShouldNotBeEmpty(); list.Count.ShouldBe(2); }
public Task <List <TagDto> > GetAllRelatedTagsAsync(string entityType, string entityId) { return(TagAppService.GetAllRelatedTagsAsync(entityType, entityId)); }
public Task <List <TagDto> > GetAllRelatedTagsAsync(GetRelatedTagsInput input) { return(TagAppService.GetAllRelatedTagsAsync(input)); }