Ejemplo n.º 1
0
        // delete selected equipment table item from the table and replace current listview with updated table items
        async Task DeleteItem(Equipment item)
        {
            await manager.DeleteTableItemAsync(item, this);

            equipmentList.ItemsSource = await manager.GetTableAsync(this);
        }