using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FurnitureAssemblyContracts.ViewModels { public class ReportCountOrdersViewModel { public DateTime DateCreate { get; set; } public int CountOrders { get; set; } public double TotalSumOrders { get; set; } } }