@if (isLoading) { } else if (SelRecord != null) { } else if (SearchRecords == null || SearchRecords.Count == 0) {
No record Found
} else {
@foreach (var item in ListRecords) {

@($"{item.Passcode:00 00 00 00}")

  • Richiesta:
    @($"{item.DtReq:ddd yyyy-MM-dd, HH:MM:ss}")
  • @if (item.DictNumKVP() > nShort) { @foreach (var kvp in item.DictAttribShort(nShort)) {
  • @kvp.Key:
    @kvp.Value
  • }
  • @if (string.IsNullOrEmpty(item.UserAppr)) { } else { }
    ...@(item.DictNumKVP() - nShort) more
  • } else { @foreach (var kvp in item.DictAttrib) {
  • @kvp.Key:
    @kvp.Value
  • } }
}
}