phronCare/phronCare.UIBlazor/Models/Sales/QuoteAuthorizationViewItem.cs
Leandro Hernan Rojas e276e9672c
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m16s
Add Authorization Quote
2025-05-29 19:21:57 -03:00

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;
}
}