2024-05-31 19:49:56 +04:00
|
|
|
|
using ElectronicsShopDataModels.Enums;
|
|
|
|
|
using ElectronicsShopDataModels.Models;
|
|
|
|
|
using System;
|
2024-05-30 16:07:54 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportBindingModel
|
|
|
|
|
{
|
2024-05-31 19:49:56 +04:00
|
|
|
|
public int? ID { get; set; }
|
|
|
|
|
public int? ClientID { get; set; }
|
|
|
|
|
public string? ProductName { get; set; } = string.Empty;
|
|
|
|
|
public double? ProductPrice { get; set; }
|
|
|
|
|
public PaymeantOption Status { get; set; } = PaymeantOption.Неоплачено;
|
|
|
|
|
public DateTime? DateStart { get; set; }
|
|
|
|
|
public DateTime? DateFinish { get; set; }
|
|
|
|
|
public Dictionary<int, IProductModel> PaymeantProduct
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
|
|
|
|
}
|
2024-05-30 16:07:54 +04:00
|
|
|
|
}
|