using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronicsShopContracts.SearchModels { public class PaymentSearchModel { public int? ID { get; set; } public int? ProductID { get; set; } public int? OrderID { get; set; } public double? SumPay { get; set; } } }