Исправление поля Номер счёта.

This commit is contained in:
Programmist73 2023-04-01 12:57:56 +04:00
parent 5e911a4181
commit 6651dc39a8
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ namespace BankYouBankruptContracts.BindingModels
public int ClientId { get; set; }
public int AccountNumber { get; set; }
public string AccountNumber { get; set; } = string.Empty;
public string PasswordAccount { get; set; } = string.Empty;

View File

@ -17,7 +17,7 @@ namespace BankYouBankruptContracts.ViewModels
public int ClientId { get; set; }
[DisplayName("Номер счёта")]
public int AccountNumber { get; set; }
public string AccountNumber { get; set; } = string.Empty;
[DisplayName("Имя")]
public string Name { get; set; } = string.Empty;

View File

@ -10,7 +10,7 @@ namespace BankYouBankruptDataModels.Models
//банковский счёт
public interface IAccountModel : IId
{
int AccountNumber { get; }
string AccountNumber { get; }
int CashierId { get; }