вливаю всё, что было создано на 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
3 changed files with 3 additions and 3 deletions
Showing only changes of commit a16836ba24 - Show all commits

View File

@ -7,8 +7,8 @@ namespace PolyclinicContracts.BindingModels
public int DaysCount { get; set; }
public int PillsPerDay { get; set; }
public string Comment { get; set; } = string.Empty;
public int RecipeId { get; set; }
public Dictionary<int, IDiagnosisModel> CourseDiagnosis { get; set; } = new();
public Dictionary<int, IRecipeModel> CourseRecipes { get; set; } = new();
public int Id { get; set; }
}
}

View File

@ -11,8 +11,8 @@ namespace PolyclinicContracts.ViewModels
public int PillsPerDay { get; set; }
[DisplayName("Комментарий")]
public string Comment { get; set; } = string.Empty;
public int RecipeId { get; set; }
public Dictionary<int, IDiagnosisModel> CourseDiagnosis { get; set; } = new();
public Dictionary<int, IRecipeModel> CourseRecipes { get; set; } = new();
public int Id { get; set; }
}
}

View File

@ -5,7 +5,7 @@
int DaysCount { get; }
int PillsPerDay { get; }
string Comment { get; }
int RecipeId { get; }
Dictionary<int, IDiagnosisModel> CourseDiagnosis { get; }
Dictionary<int, IRecipeModel> CourseRecipes { get; }
}
}