Exemplo n.º 1
0
        public async Task GetAllRelatedTagsAsync()
        {
            var list = await _tagAppService.GetAllRelatedTagsAsync(_cmsKitTestData.Content_1_EntityType,
                                                                   _cmsKitTestData.EntityId1);

            list.ShouldNotBeEmpty();
            list.Count.ShouldBe(2);
        }
Exemplo n.º 2
0
 public Task <List <TagDto> > GetAllRelatedTagsAsync(string entityType, string entityId)
 {
     return(TagAppService.GetAllRelatedTagsAsync(entityType, entityId));
 }
Exemplo n.º 3
0
 public Task <List <TagDto> > GetAllRelatedTagsAsync(GetRelatedTagsInput input)
 {
     return(TagAppService.GetAllRelatedTagsAsync(input));
 }