From cee4fc8d774e857c434e013b630955f5c939b750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D0=B5=D0=BC=20=D0=A5=D0=B0=D1=80=D0=BB?= =?UTF-8?q?=D0=B0=D0=BC=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 16:28:18 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B18=20-=20=D1=84=D0=B8=D0=BA?= =?UTF-8?q?=D1=811.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Implements/BackUpInfo.cs | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 FoodOrders/AbstractFoodOrdersListImplement/Implements/BackUpInfo.cs diff --git a/FoodOrders/AbstractFoodOrdersListImplement/Implements/BackUpInfo.cs b/FoodOrders/AbstractFoodOrdersListImplement/Implements/BackUpInfo.cs new file mode 100644 index 0000000..fd7d11f --- /dev/null +++ b/FoodOrders/AbstractFoodOrdersListImplement/Implements/BackUpInfo.cs @@ -0,0 +1,22 @@ +using AbstractFoodOrdersContracts.StoragesContracts; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace AbstractFoodOrdersListImplement.Implements +{ + public class BackUpInfo : IBackUpInfo + { + public List? GetList() where T : class, new() + { + throw new NotImplementedException(); + } + + public Type? GetTypeByModelInterface(string modelInterfaceName) + { + throw new NotImplementedException(); + } + } +}