CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IPaymentModel.cs
Илья Федотов 06c59932ca GetReport
2024-06-02 09:03:59 +04:00

20 lines
462 B
C#

using ElectronicsShopDataModels.Enums;
using Microsoft.VisualBasic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models
{
public interface IPaymentModel: IID
{
int OrderID { get; }
double SumPayment { get; }
PaymeantOption PayOption { get; }
DateTime DatePaymeant { get; }
int ClientID { get; }
}
}