PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarListImplement/Implements/BackUpInfo.cs
2023-05-02 18:16:03 +04:00

17 lines
418 B
C#

using SushiBarContracts.StoragesContracts;
namespace SushiBarListImplement.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();
}
}
}