@using Indotalent.Features.Purchase.Bill.Cqrs @using MudBlazor Referenced Purchase Order Items Product Summary Unit Price Quantity Total @context.ProductName @context.Summary @context.UnitPrice?.ToString("N2") @context.Quantity @context.Total?.ToString("N2") @code { [Parameter] public List Items { get; set; } = new(); [Parameter] public bool ReadOnly { get; set; } = true; }