22 lines
476 B
C#
22 lines
476 B
C#
using BankDataModels.Models.Cashier;
|
|
|
|
namespace BankContracts.BindingModels.Cashier
|
|
{
|
|
public class AccountBindingModel : IAccountModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int CashierId { get; set; }
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
public string AccountNumber { get; set; } = string.Empty;
|
|
|
|
public string PasswordAccount { get; set; } = string.Empty;
|
|
|
|
public double Balance { get; set; }
|
|
|
|
public DateTime DateOpen { get; set; } = DateTime.Now;
|
|
}
|
|
}
|