38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
|
|
namespace AsadiTools.Models;
|
||
|
|
|
||
|
|
public enum OrderStatus
|
||
|
|
{
|
||
|
|
Pending,
|
||
|
|
Confirmed,
|
||
|
|
Shipped,
|
||
|
|
Delivered,
|
||
|
|
Cancelled
|
||
|
|
}
|
||
|
|
|
||
|
|
public class Order
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public string OrderNumber { get; set; } = string.Empty;
|
||
|
|
public string CustomerName { get; set; } = string.Empty;
|
||
|
|
public string CustomerPhone { get; set; } = string.Empty;
|
||
|
|
public string? CustomerAddress { get; set; }
|
||
|
|
public string? Notes { get; set; }
|
||
|
|
public decimal Subtotal { get; set; }
|
||
|
|
public decimal Total { get; set; }
|
||
|
|
public OrderStatus Status { get; set; } = OrderStatus.Pending;
|
||
|
|
public DateTime CreatedAt { get; set; } = DateTime.Now;
|
||
|
|
public List<OrderItem> Items { get; set; } = [];
|
||
|
|
}
|
||
|
|
|
||
|
|
public class OrderItem
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public int OrderId { get; set; }
|
||
|
|
public Order Order { get; set; } = null!;
|
||
|
|
public int ProductId { get; set; }
|
||
|
|
public string ProductNameFa { get; set; } = string.Empty;
|
||
|
|
public decimal Price { get; set; }
|
||
|
|
public int Quantity { get; set; }
|
||
|
|
public decimal Subtotal => Price * Quantity;
|
||
|
|
}
|