From 084341f220775ecb535970f0bcb74cf4eef13927 Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Tue, 14 May 2024 23:59:01 +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=D1=83=D0=B4=D0=B0=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D1=8D=D0=BB=D0=B5=D0=BC=D0=B5=D0=BD=D1=82?= =?UTF-8?q?=D0=B0=20=D0=B2=20=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5?= =?UTF-8?q?=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 763e2e7..bd27bc9 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/DiagnoseLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/DiagnoseLogic.cs @@ -22,7 +22,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public bool Delete(Diagnose model) + public bool Delete(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs index cf29611..5ae492d 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/DoctorLogic.cs @@ -22,7 +22,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public bool Delete(Doctor model) + public bool Delete(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs index 549ca0e..d70933d 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/PatientLogic.cs @@ -22,7 +22,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public bool Delete(Patient model) + public bool Delete(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs index 5147b39..12f5492 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/SpecializationLogic.cs @@ -22,7 +22,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public bool Delete(Specialization model) + public bool Delete(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs b/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs index 6c2d59c..2295561 100644 --- a/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs +++ b/Medical/MedicalBusinessLogic/BusinessLogics/VisitLogic.cs @@ -22,7 +22,7 @@ namespace MedicalBusinessLogic.BusinessLogics throw new NotImplementedException(); } - public bool Delete(Visit model) + public bool Delete(int id) { throw new NotImplementedException(); } diff --git a/Medical/MedicalDatabaseContracts/ILogic.cs b/Medical/MedicalDatabaseContracts/ILogic.cs index acca3a4..d8e520b 100644 --- a/Medical/MedicalDatabaseContracts/ILogic.cs +++ b/Medical/MedicalDatabaseContracts/ILogic.cs @@ -13,6 +13,6 @@ namespace MedicalDatabaseContracts V? ReadElement(int id); bool Create(M model); bool Update(M model); - bool Delete(M model); + bool Delete(int id); } }