Лена. врое наконец изменены нормально связи многие ко многим
This commit is contained in:
parent
45a6e55e63
commit
c6344cbf81
@ -12,7 +12,7 @@ namespace PolyclinicContracts.BindingModels
|
|||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public string Name { get; set; } = string.Empty;
|
public string Name { get; set; } = string.Empty;
|
||||||
public string Comment { get; set; } = string.Empty;
|
public string Comment { get; set; } = string.Empty;
|
||||||
public Dictionary<int, (ISymptomModel, int)> MedicamentSymptom { get; set; } = new();
|
public Dictionary<int, ISymptomModel> MedicamentSymptom { get; set; } = new();
|
||||||
public Dictionary<int, (IProcedureModel, int)> MedicamentProcedure { get; set; } = new();
|
public Dictionary<int, IProcedureModel> MedicamentProcedure { get; set; } = new();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -12,7 +12,7 @@ namespace PolyclinicContracts.BindingModels
|
|||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public string Name { get; set; } = string.Empty;
|
public string Name { get; set; } = string.Empty;
|
||||||
public string Comment { get; set; } = string.Empty;
|
public string Comment { get; set; } = string.Empty;
|
||||||
public Dictionary<int, (IRecipeModel, int)> ProcedureReciept { get; set; } = new();
|
public Dictionary<int, ICourseModel> ProcedureCourse { get; set; } = new();
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -12,7 +12,7 @@ namespace PolyclinicContracts.BindingModels
|
|||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public int CountProcedures { get; set; }
|
public int CountProcedures { get; set; }
|
||||||
public string Comment { get; set; } = string.Empty;
|
public string Comment { get; set; } = string.Empty;
|
||||||
public Dictionary<int, (ICourseModel, int)> RecipeCourse { get; set; } = new();
|
public Dictionary<int, IRecipeModel> ProcedureRecipe { get; set; } = new();
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -10,7 +10,7 @@ namespace PolyclinicDataModels.Models
|
|||||||
{
|
{
|
||||||
string Name { get; }
|
string Name { get; }
|
||||||
string Comment { get; }
|
string Comment { get; }
|
||||||
Dictionary<int, (ISymptomModel, int)> MedicamentSymptom { get; }
|
Dictionary<int, ISymptomModel> MedicamentSymptom { get; }
|
||||||
Dictionary<int, (IProcedureModel, int)> MedicamentProcedure { get; }
|
Dictionary<int, IProcedureModel> MedicamentProcedure { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -10,7 +10,6 @@ namespace PolyclinicDataModels.Models
|
|||||||
{
|
{
|
||||||
string Name { get; }
|
string Name { get; }
|
||||||
string Comment { get; }
|
string Comment { get; }
|
||||||
Dictionary<int, (IRecipeModel, int)> ProcedureReciept { get; }
|
Dictionary<int, ICourseModel> ProcedureCourse { get; }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -10,6 +10,7 @@ namespace PolyclinicDataModels.Models
|
|||||||
{
|
{
|
||||||
int CountProcedures { get; set; }
|
int CountProcedures { get; set; }
|
||||||
string Comment { get; set; }
|
string Comment { get; set; }
|
||||||
Dictionary<int, (ICourseModel, int)> RecipeCourse { get; }
|
Dictionary<int, IRecipeModel> ProcedureRecipe { get; }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user