From 19f7fbb7f4019bcc8810e95de04fd6496e5e0d71 Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Mon, 27 May 2024 22:30:16 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BA=D0=BE=D0=BC=D0=BC=D0=B5=D0=BD=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/DiagnosesController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Polyclinic/PolyclinicWebAppImplementer/Controllers/DiagnosesController.cs b/Polyclinic/PolyclinicWebAppImplementer/Controllers/DiagnosesController.cs index 2eb18fc..0793cbb 100644 --- a/Polyclinic/PolyclinicWebAppImplementer/Controllers/DiagnosesController.cs +++ b/Polyclinic/PolyclinicWebAppImplementer/Controllers/DiagnosesController.cs @@ -55,7 +55,7 @@ namespace PolyclinicWebAppImplementer.Controllers [HttpPost] public IActionResult Edit(int id, DiagnoseViewModel model) { - // TODO проверить, что пользователь зочет редактировать свой диагноз (UserId) + // TODO проверить, что пользователь хочет редактировать свой диагноз (UserId) if (HttpContext.Request.Method == "GET") { var obj = _diagnoseLogic.ReadElement(new DiagnoseSearchModel { Id = id }); @@ -80,6 +80,7 @@ namespace PolyclinicWebAppImplementer.Controllers [HttpPost] public IActionResult Delete(int id) { + // TODO проверить, что пользователь хочет удалить свой диагноз (UserId) var obj = _diagnoseLogic.ReadElement(new DiagnoseSearchModel { Id = id }); if (obj != null) {