using System; using System.Collections.Generic; using System.Linq; using System.Security.Principal; using System.Text; using System.Threading.Tasks; namespace BankDataModels.Models.Cashier { // Интерфейс, отвечающий за банковский cчёт public interface IAccountModel : IId { // Номер счёта string AccountNumber { get; } int CashierId { get; } int ClientId { get; } string PasswordAccount { get; } // Сумма на счёте double Balance { get; } // Дата открытия DateTime DateOpen { get; } } }