Prodotti

@if (isLoading) { } @if (AllRecords == null || AllRecords.Count == 0) {
No record to search
} else { if (string.IsNullOrEmpty(searchVal)) {
@AllRecords.Count Records found
} else { @foreach (var item in ListRecords) { }
Nome Numero Opzione 1 Opzione 2
@item.ProductName @item.ProductNumber @item.ProductOption1 @item.ProductOption2
} }