2024-03-26 16:57:52 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FlowerShopContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportOrdersViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public DateTime DateCreate { get; set; }
|
|
|
|
|
public string FlowerName { get; set; } = string.Empty;
|
2024-03-26 20:44:18 +04:00
|
|
|
|
public string OrderStatus { get; set; } = string.Empty;
|
2024-03-26 16:57:52 +04:00
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|