Exemplo n.º 1
0
 private void AssertItemTypeIndex(ItemTypeIndexDto itemTypeIndex)
 {
     Assert.That(itemTypeIndex.Id, Is.Not.Null.Or.Empty);
     Assert.That(itemTypeIndex.Name, Is.Not.Null.Or.Empty);
     Assert.That(itemTypeIndex.Path, Is.Not.Null.Or.Empty);
 }
Exemplo n.º 2
0
        private async Task <IEnumerable <ItemTypeDto> > ProcessIndexToType(ItemTypeIndexDto itemTypeIndex)
        {
            var itemTypes = await Client.GetItemTypeAsync(itemTypeIndex.Path);

            return(itemTypes);
        }