23 lines
677 B
C#
23 lines
677 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Shared.DTOs
|
|||
|
{
|
|||
|
public class OrderDto
|
|||
|
{
|
|||
|
public int ID { get; set; }
|
|||
|
public StatusOrder Status { get; set; }
|
|||
|
public string StatusTitle { get { return Status.GetEnumDisplayName(); } }
|
|||
|
public string DateCreate { get; set; }
|
|||
|
public string ApprovalDate { get; set; }
|
|||
|
public decimal PreDiscount { get; set; }
|
|||
|
public decimal TDiscount { get; set; }
|
|||
|
public decimal lstDiscount { get; set; }
|
|||
|
public decimal TTax { get; set; }
|
|||
|
public decimal TPrice { get; set; }
|
|||
|
}
|
|||
|
}
|