@if (isLoading)
{
}
@if (AllRecords == null || AllRecords.Count == 0)
{
No record to search
}
else
{
if (string.IsNullOrEmpty(searchVal))
{
@AllRecords.Count Records found
}
else
{
| Numero |
Seriale |
Data |
Note |
@foreach (var item in ListRecords)
{
| @item.Number |
@item.Seriale |
@($"{item.Date:yyyy.MM.dd}") |
@item.Note |
}
}
}