Смена отноения курса и рецепта #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 2 deletions
Showing only changes of commit 33ce1eb14b - Show all commits

View File

@ -11,7 +11,6 @@ namespace PolyclinicContracts.ViewModels
public int PillsPerDay { get; set; }
[DisplayName("Комментарий")]
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

@ -12,7 +12,7 @@ namespace PolyclinicContracts.ViewModels
[DisplayName("Комментарий")]
public string Comment { get; set; } = string.Empty;
public int CourseId { get; set; }
public Dictionary<int, IProcedureModel> RecipeProcedures { get; } = new();
}
}