Смена отноения курса и рецепта #8

Merged
ns.potapov merged 5 commits from change_recipe_course_relation into stage7_user_web_interface_prototype 2024-04-30 22:53:24 +04:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit b3101ea169 - Show all commits

View File

@ -7,7 +7,6 @@ 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, IDiagnoseModel> CourseDiagnoses { get; set; } = new();
public int Id { get; set; }
}

View File

@ -5,6 +5,7 @@ namespace PolyclinicContracts.BindingModels
public class RecipeBindingModel : IRecipeModel
{
public int Id { get; set; }
public int CourseId { get; set; }
public int ProceduresCount { get; set; }
public string Comment { get; set; } = string.Empty;
public Dictionary<int, IProcedureModel> RecipeProcedures { get; } = new();