CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IPaymentModel.cs

19 lines
424 B
C#
Raw Normal View History

using ElectronicsShopDataModels.Enums;
using Microsoft.VisualBasic;
2024-05-19 18:43:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models
{
2024-05-22 23:00:35 +04:00
public interface IPaymentModel: IID
2024-05-19 18:43:00 +04:00
{
2024-05-22 23:00:35 +04:00
int ProductID { get; }
int OrderID { get; }
double SumPayment { get; }
PaymeantOption PayOption { get; }
2024-05-19 18:43:00 +04:00
}
}