Лаб8 - фикс1.

This commit is contained in:
Артем Харламов 2023-06-01 16:28:18 +04:00
parent e66180e3a4
commit cee4fc8d77

View File

@ -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<T>? GetList<T>() where T : class, new()
{
throw new NotImplementedException();
}
public Type? GetTypeByModelInterface(string modelInterfaceName)
{
throw new NotImplementedException();
}
}
}