2024-05-07 21:00:55 +04:00
|
|
|
|
namespace PizzeriaContracts.ViewModels
|
2024-04-10 02:45:10 +04:00
|
|
|
|
{
|
|
|
|
|
public class ReportOrdersViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public DateTime DateCreate { get; set; }
|
|
|
|
|
public string PizzaName { get; set; } = string.Empty;
|
|
|
|
|
public string OrderStatus { get; set; } = string.Empty;
|
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|