From 8d8f871c803822eaefb9056018be24d38d8ddceb Mon Sep 17 00:00:00 2001 From: Marselchi Date: Thu, 2 May 2024 11:52:25 +0400 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B1=D1=8B=D0=BB=20=D1=81=D0=BD?= =?UTF-8?q?=D0=B5=D1=81=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BusinessLogicsContracts/IReportLogic.cs | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 CarCenter/CarCenterContracts/BusinessLogicsContracts/IReportLogic.cs diff --git a/CarCenter/CarCenterContracts/BusinessLogicsContracts/IReportLogic.cs b/CarCenter/CarCenterContracts/BusinessLogicsContracts/IReportLogic.cs deleted file mode 100644 index dbfbcb6..0000000 --- a/CarCenter/CarCenterContracts/BusinessLogicsContracts/IReportLogic.cs +++ /dev/null @@ -1,20 +0,0 @@ -using CarCenterContracts.BindingModels; -using CarCenterContracts.ViewModels; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CarCenterContracts.BusinessLogicsContracts -{ - public interface IReportLogic - { - - List GetBundligs(ReportBindingModel model); - List GetCars(ReportBindingModel model); - List GetOrders(ReportBindingModel model); - List GetPresales(ReportBindingModel model); - - } -}