From 6838c3f610948e6ffaccd49bb50579c4d0cc9697 Mon Sep 17 00:00:00 2001 From: dex_moth Date: Mon, 27 May 2024 14:54:24 +0400 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B1=D1=80=D0=B0=D0=BB=D0=B0=20=D1=83?= =?UTF-8?q?=20=D0=BA=D0=BE=D0=BC=D0=BC=D0=B5=D0=BD=D1=82=D0=B0=20=D0=B4?= =?UTF-8?q?=D0=B0=D1=82=D1=83=20=D0=B2=20search=20model?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BusinessLogic/CommentLogic.cs | 4 ++-- .../ComputerHardwareStoreBusinessLogic.csproj | 6 ------ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs index 184a904..120163d 100644 --- a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs +++ b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs @@ -20,7 +20,7 @@ namespace ComputerHardwareStoreBusinessLogic.BusinessLogic public List? ReadList(CommentSearchModel? model) { - _logger.LogInformation("ReadList Comment. Date:{Date}. Id:{Id}", model?.Date, model?.Id); + _logger.LogInformation("ReadList Comment. Id:{Id}", model?.Id); var list = model == null ? _commentStorage.GetFullList() : _commentStorage.GetFilteredList(model); if (list == null) @@ -38,7 +38,7 @@ namespace ComputerHardwareStoreBusinessLogic.BusinessLogic { throw new ArgumentNullException(nameof(model)); } - _logger.LogInformation("ReadElement Comment. Date:{Date}. Id:{ Id}", model.Date, model.Id); + _logger.LogInformation("ReadElement Comment. Id:{ Id}", model.Id); var element = _commentStorage.GetElement(model); if (element == null) { diff --git a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj index 982ae40..47a15a0 100644 --- a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj +++ b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj @@ -6,12 +6,6 @@ enable - - - - - -