22 lines
617 B
C#
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; } }
|
|
}
|
|
}
|