CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/ViewModels/ReportPaymeantsViewModel.cs

20 lines
529 B
C#
Raw Normal View History

2024-06-01 02:22:36 +04:00
using ElectronicsShopDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.ViewModels
{
public class ReportPaymeantsViewModel
{
2024-06-06 17:21:39 +04:00
public int ID { get; set; }
2024-06-01 05:50:49 +04:00
public int ClientID { get; set; }
2024-06-01 02:22:36 +04:00
public int OrderID { get; set; }
public double SumPayment { get; set; }
2024-06-02 09:03:59 +04:00
public PaymeantOption PayOption { get; set; }
2024-06-06 17:21:39 +04:00
public DateTime DatePaymeant { get; set; }
2024-06-01 02:22:36 +04:00
}
}