Убрано поле со списком рецептов из модели сущности симптома
This commit is contained in:
parent
5cdf431f47
commit
1cf08b61fa
@ -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; }
|
||||
}
|
||||
}
|
||||
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
@ -5,6 +5,5 @@
|
||||
string Name { get; }
|
||||
string Comment { get; }
|
||||
Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; }
|
||||
Dictionary<int, IRecipeModel> SymptomRecipes { get; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user