@using Groceries.Transactions @using Microsoft.AspNetCore.Html; @model TransactionListModel @{ ViewBag.Title = "Transactions"; string? GetNextSortDir(string col) { if (col != Model.Sort) { return "asc"; } return Model.Dir switch { null or "" => "asc", "asc" => "desc", _ => null, }; } string? GetSortDir(string col) { if (col != Model.Sort) { return null; } return Model.Dir switch { "asc" or "desc" => Model.Dir, _ => null, }; } }

Transactions

New transaction
@**@ @foreach (var transaction in Model.Transactions) { @**@ }
Date Store Items Amount
@transaction.Store @transaction.TotalItems @transaction.TotalAmount.ToString("c")View