From 1d1d060b2596a704ff80f8a02d3b64d758aae1c5 Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Tue, 14 May 2024 23:57:22 +0400 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=81=D0=B8=D0=B3=D0=BD=D0=B0=D1=82=D1=83=D1=80=D1=83=20=D0=BC?= =?UTF-8?q?=D0=B5=D1=82=D0=BE=D0=B4=D0=B0=20=D0=BF=D0=BE=D0=BB=D1=83=D1=87?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=8D=D0=BB=D0=B5=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D1=82=D0=B0=20=D0=B2=20=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84?= =?UTF-8?q?=D0=B5=D0=B9=D1=81=D0=B5=20=D0=BB=D0=BE=D0=B3=D0=B8=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Medical/MedicalBusinessLogic/BusinessLogics/DiagnoseLogic.cs | 2 +- Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs | 2 +- Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs | 2 +- .../MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs | 2 +- Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs | 2 +- Medical/MedicalDatabaseContracts/ILogic.cs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/DiagnoseLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/DiagnoseLogic.cs index eaf605e..763e2e7 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/DiagnoseLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/DiagnoseLogic.cs @@ -27,7 +27,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public DiagnoseViewModel? ReadElement(DiagnoseSearchModel searchModel) + public DiagnoseViewModel? ReadElement(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs index 075504b..cf29611 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs @@ -27,7 +27,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public DoctorViewModel? ReadElement(DoctorSearchModel searchModel) + public DoctorViewModel? ReadElement(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs index f04d5b7..549ca0e 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs @@ -27,7 +27,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public PatientViewModel? ReadElement(PatientSearchModel searchModel) + public PatientViewModel? ReadElement(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs index a41a9a6..5147b39 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs @@ -27,7 +27,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public SpecializationViewModel? ReadElement(SpecializationSearchModel searchModel) + public SpecializationViewModel? ReadElement(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs index d5a40a0..6c2d59c 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs @@ -27,7 +27,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public VisitViewModel? ReadElement(VisitSearchModel searchModel) + public VisitViewModel? ReadElement(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalDatabaseContracts/ILogic.cs b/Medical/MedicalDatabaseContracts/ILogic.cs index e2fa87e..acca3a4 100644 --- a/Medical/MedicalDatabaseContracts/ILogic.cs +++ b/Medical/MedicalDatabaseContracts/ILogic.cs @@ -10,7 +10,7 @@ namespace MedicalDatabaseContracts where S : AbstractSearchModel { List? ReadList(S? searchModel); - V? ReadElement(S searchModel); + V? ReadElement(int id); bool Create(M model); bool Update(M model); bool Delete(M model);