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

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