PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryListImplement/Implements/BackUpInfo.cs
2024-05-22 14:38:56 +04:00

16 lines
427 B
C#

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