Chiavi

@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) { }
Numero Seriale Data Note
@item.Number @item.Seriale @($"{item.Date:yyyy.MM.dd}") @item.Note
} }