CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDataModels/Models/IAccountModel.cs

26 lines
449 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
//банковский счёт
public interface IAccountModel : IId
{
int AccountNumber { get; }
int CashierId { get; }
int ClientId { get; }
string PasswordAccount { get; }
double Balance { get; }
DateTime DateOpen { get; }
}
}