CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IPaymentModel.cs
Илья Федотов c3c37efef6 Paymeant is done
2024-06-01 05:23:37 +04:00

19 lines
423 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; }
int ClientID { get; }
}
}