Этап 1. Добавление связей между моделями двух вариантов

This commit is contained in:
prodigygirl 2023-03-29 10:55:59 +04:00
parent e8dcdf0cb9
commit 1751f87357
2 changed files with 2 additions and 0 deletions

View File

@ -3,5 +3,6 @@
public interface IProcedureModel : IId
{
string Name { get; }
Dictionary<int, IMedicineModel> ProcedureMedicines { get; }
}
}

View File

@ -6,5 +6,6 @@
DateTime Date { get; }
int ApothecaryId { get; }
Dictionary<int, IMedicineModel> RecipeMedicines { get; }
Dictionary<int, ITreatmentModel> RecipeTreatments { get; }
}
}