CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BindingModels/PaymentBindingModel.cs

23 lines
471 B
C#
Raw Normal View History

2024-05-19 18:43:00 +04:00
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.BindingModels
{
2024-05-22 23:00:35 +04:00
public class PaymentBindingModel : IPaymentModel
2024-05-19 18:43:00 +04:00
{
public int ID { get; set; }
2024-05-22 23:00:35 +04:00
2024-05-19 18:43:00 +04:00
public int ClientID { get; set; }
2024-05-22 23:00:35 +04:00
public int ProductID { get; set; }
public int OrderID { get; set; }
public double SumPayment { get; set; }
}
2024-05-19 18:43:00 +04:00
}