From 4d74e6bb136fc93f43add3af9956f98db7f2dac8 Mon Sep 17 00:00:00 2001 From: Safgerd Date: Fri, 28 Apr 2023 16:55:52 +0400 Subject: [PATCH 1/2] gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ca1c7a3..6192267 100644 --- a/.gitignore +++ b/.gitignore @@ -398,3 +398,4 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml +/AutomobilePlant/ImplementationExtensions \ No newline at end of file From dddbba87daf356b4c561409b886e626742da1308 Mon Sep 17 00:00:00 2001 From: Safgerd Date: Fri, 28 Apr 2023 16:56:34 +0400 Subject: [PATCH 2/2] =?UTF-8?q?LabWork02=5FHard:=20=D0=A4=D0=B8=D0=BA?= =?UTF-8?q?=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs b/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs index 9dddf06..55094d6 100644 --- a/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs +++ b/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs @@ -84,7 +84,7 @@ namespace AutomobilePlantBusinessLogic.BusinessLogics var car = _carStorage.GetElement(new CarSearchModel() { Id = model.CarId }); if (car == null) { - _logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Document not found."); + _logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Car not found."); return false; } if (CheckThenSupplyMany(car, model.Count) == false)