2024-05-25 15:04:18 +04:00
|
|
|
|
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; }
|
2024-05-25 15:04:18 +04:00
|
|
|
|
PaymeantOption PayOption { get; }
|
2024-05-19 18:43:00 +04:00
|
|
|
|
}
|
|
|
|
|
}
|