2023-04-01 12:11:09 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2023-04-01 12:55:58 +04:00
|
|
|
|
using System.Security.Principal;
|
2023-04-01 12:11:09 +04:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptDataModels.Models
|
|
|
|
|
{
|
2023-04-01 12:22:39 +04:00
|
|
|
|
//банковский счёт
|
2023-04-01 12:11:09 +04:00
|
|
|
|
public interface IAccountModel : IId
|
|
|
|
|
{
|
2023-04-01 12:57:56 +04:00
|
|
|
|
string AccountNumber { get; }
|
2023-04-01 12:55:58 +04:00
|
|
|
|
|
2023-04-01 12:11:09 +04:00
|
|
|
|
int CashierId { get; }
|
|
|
|
|
|
|
|
|
|
int ClientId { get; }
|
|
|
|
|
|
|
|
|
|
string PasswordAccount { get; }
|
|
|
|
|
|
|
|
|
|
double Balance { get; }
|
|
|
|
|
|
|
|
|
|
DateTime DateOpen { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|