2023-03-22 20:33:00 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportOrdersViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime DateCreate { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ReinforcedName { get; set; } = string.Empty;
|
|
|
|
|
|
2023-03-23 13:38:17 +04:00
|
|
|
|
public string OrderStatus { get; set; } = string.Empty;
|
2023-03-22 20:33:00 +04:00
|
|
|
|
|
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|