14 lines
367 B
C#
14 lines
367 B
C#
|
|
using Domain.Dtos;
|
|||
|
|
|
|||
|
|
namespace phronCare.UIBlazor.Models.Sales
|
|||
|
|
{
|
|||
|
|
public class QuoteAuthorizationViewItem : QuoteAuthorizationDto
|
|||
|
|
{
|
|||
|
|
public string ProductDescription { get; set; } = string.Empty;
|
|||
|
|
public int Quantity { get; set; }
|
|||
|
|
public decimal UnitPrice { get; set; }
|
|||
|
|
|
|||
|
|
public decimal Subtotal => Quantity * UnitPrice;
|
|||
|
|
}
|
|||
|
|
}
|