вливаю всё, что было создано на 5, 6, 7 этапах в ветку main #12
@ -12,7 +12,7 @@ namespace PolyclinicContracts.BindingModels
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string Comment { get; set; } = string.Empty;
|
||||
public Dictionary<int, (ISymptomModel, int)> MedicamentSymptom { get; set; } = new();
|
||||
public Dictionary<int, (IProcedureModel, int)> MedicamentProcedure { get; set; } = new();
|
||||
public Dictionary<int, ISymptomModel> MedicamentSymptom { get; set; } = new();
|
||||
public Dictionary<int, IProcedureModel> MedicamentProcedure { get; set; } = new();
|
||||
}
|
||||
}
|
@ -12,7 +12,7 @@ namespace PolyclinicContracts.BindingModels
|
||||
public int Id { get; set; }
|
||||
public string Name { 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 CountProcedures { get; set; }
|
||||
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 Comment { get; }
|
||||
Dictionary<int, (ISymptomModel, int)> MedicamentSymptom { get; }
|
||||
Dictionary<int, (IProcedureModel, int)> MedicamentProcedure { get; }
|
||||
Dictionary<int, ISymptomModel> MedicamentSymptom { get; }
|
||||
Dictionary<int, IProcedureModel> MedicamentProcedure { get; }
|
||||
}
|
||||
}
|
@ -10,7 +10,6 @@ namespace PolyclinicDataModels.Models
|
||||
{
|
||||
string Name { 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; }
|
||||
string Comment { get; set; }
|
||||
Dictionary<int, (ICourseModel, int)> RecipeCourse { get; }
|
||||
Dictionary<int, IRecipeModel> ProcedureRecipe { get; }
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user