using ElectronicsShopDataModels.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronicsShopContracts.BindingModels { public class PaymentBindingModel : IPaymentModel { public int ID { get; set; } public int ClientID { get; set; } public int ProductID { get; set; } public int OrderID { get; set; } public double SumPayment { get; set; } } }