From 9c2b9a111d940e3e9bfdbfaaec3202e7e40289d5 Mon Sep 17 00:00:00 2001 From: "evasina2312@gmail.com" Date: Wed, 10 May 2023 11:12:51 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B3=D0=BE=D1=82=D0=BE=D0=B2=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ComputersShop/ComputersShopBusinessLogic/WorkModeling.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ComputersShop/ComputersShopBusinessLogic/WorkModeling.cs b/ComputersShop/ComputersShopBusinessLogic/WorkModeling.cs index 651e4a1..8e5f7d1 100644 --- a/ComputersShop/ComputersShopBusinessLogic/WorkModeling.cs +++ b/ComputersShop/ComputersShopBusinessLogic/WorkModeling.cs @@ -17,8 +17,7 @@ namespace ComputersShopBusinessLogic _logger = logger; _rnd = new Random(1000); } - public void DoWork(IImplementerLogic implementerLogic, IOrderLogic - orderLogic) + public void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic) { _orderLogic = orderLogic; var implementers = implementerLogic.ReadList(null); @@ -29,8 +28,7 @@ namespace ComputersShopBusinessLogic } var orders = _orderLogic.ReadList(new OrderSearchModel { - Status = - OrderStatus.Принят + Status = OrderStatus.Принят }); if (orders == null || orders.Count == 0) {