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