17 lines
341 B
C#
17 lines
341 B
C#
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; }
|
|
}
|
|
}
|