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(); + } + } +}