23 lines
582 B
C#
23 lines
582 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; }
|
|
|
|
// Список оплаченнх товаров
|
|
Dictionary<int, (IProductModel, int)> PayProductList { get; }
|
|
}
|
|
}
|