CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BindingModels/ReportBindingModel.cs

27 lines
728 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using ElectronicsShopDataModels.Enums;
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.BindingModels
{
public class ReportBindingModel
{
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();
}
}