Files
moadiran/Shared/DTOs/OrderItemDto.cs
mmrbnjd fe95e2b526 ...
2024-07-28 22:58:39 +03:30

22 lines
617 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class OrderItemDto
{
public int ID { get; set; }
public string Title { get; set; }
public int OrderID { get; set; }
public int IDForType { get; set; }
public int CreditAmount { get; set; }
public decimal APrice { get; set; }
public decimal Discount { get; set; }
public decimal Tax { get; set; }
public decimal Total { get { return (CreditAmount * APrice) - Discount + Tax; } }
}
}