Лена. исправлила пользователя под общепринятые стандарты...)

This commit is contained in:
Елена Бакальская 2024-04-17 23:24:23 +04:00
parent c6344cbf81
commit 30aeebddd2
2 changed files with 2 additions and 4 deletions

View File

@ -11,8 +11,7 @@ namespace PolyclinicContracts.BindingModels
{ {
public int Id { get; set; } public int Id { get; set; }
public string FIO { get; set; } = string.Empty; public string FIO { get; set; } = string.Empty;
public DateTime BirthDay { get; set; }
public string Password { get; set; } = "123"; public string Password { get; set; } = "123";
public string RepeatPassword { get; set; } = "123"; public string Email { get; set; } = string.Empty;
} }
} }

View File

@ -9,8 +9,7 @@ namespace PolyclinicDataModels.Models
public interface ISuretorModel : IId public interface ISuretorModel : IId
{ {
string FIO { get; } string FIO { get; }
DateTime BirthDay { get; }
string Password { get; } string Password { get; }
string RepeatPassword { get; } string Email { get; }
} }
} }