Убрано поле со списком рецептов из модели сущности симптома

This commit is contained in:
Никита Потапов 2024-04-28 12:47:34 +04:00
parent 5cdf431f47
commit 1cf08b61fa
3 changed files with 0 additions and 3 deletions

View File

@ -7,7 +7,6 @@ namespace PolyclinicContracts.BindingModels
public string Name { get; set; } = string.Empty;
public string Comment { get; set; } = string.Empty;
public Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; set; } = new();
public Dictionary<int, IRecipeModel> SymptomRecipes { get; set; } = new();
public int Id { get; set; }
}
}

View File

@ -10,7 +10,6 @@ namespace PolyclinicContracts.ViewModels
[DisplayName("Комментарий")]
public string Comment { get; set; } = string.Empty;
public Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; set; } = new();
public Dictionary<int, IRecipeModel> SymptomRecipes { get; set; } = new();
public int Id { get; set; }
}
}

View File

@ -5,6 +5,5 @@
string Name { get; }
string Comment { get; }
Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; }
Dictionary<int, IRecipeModel> SymptomRecipes { get; }
}
}