From 9347ef10b409d2cee47eebe98a63ebf8535b4da0 Mon Sep 17 00:00:00 2001 From: Yuee Shiness Date: Fri, 7 Apr 2023 20:18:16 +0400 Subject: [PATCH] Test commit. --- .../BusinessLogic/EmployeeReportLogic.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs b/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs index ceb389e..7717786 100644 --- a/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs +++ b/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs @@ -10,14 +10,15 @@ using System.Threading.Tasks; namespace ComputerStoreBusinessLogic.BusinessLogic { - public class ReportLogic : IReportLogic + public class EmployeeReportLogic : IEmployeeReportLogic { + //asd private readonly IPCStorage _pcStorage; private readonly IProductStorage _productStorage; private readonly IConsignmentStorage _consignmentStorage; private readonly IRequestStorage _requestStorage; - public ReportLogic(IPCStorage pcStorage, IProductStorage productStorage, IConsignmentStorage consignmentStorage, IRequestStorage requestStorage) + public EmployeeReportLogic(IPCStorage pcStorage, IProductStorage productStorage, IConsignmentStorage consignmentStorage, IRequestStorage requestStorage) { _pcStorage = pcStorage; _productStorage = productStorage;