CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IPayModel.cs

17 lines
341 B
C#
Raw Normal View History

2024-05-19 18:43:00 +04:00
using Microsoft.VisualBasic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models
{
public interface IPayModel: IID
{
int ClientID { get; }
double SummaPay { get; }
DateTime DatePay { get; }
}
}