вливаю всё, что было создано на 5, 6, 7 этапах в ветку main #12

Merged
ekallin merged 180 commits from stage7_user_web_interface_prototype into main 2024-05-01 19:15:20 +04:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 30aeebddd2 - Show all commits

View File

@ -11,8 +11,7 @@ namespace PolyclinicContracts.BindingModels
{
public int Id { get; set; }
public string FIO { get; set; } = string.Empty;
public DateTime BirthDay { get; set; }
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
{
string FIO { get; }
DateTime BirthDay { get; }
string Password { get; }
string RepeatPassword { get; }
string Email { get; }
}
}