2024-05-20 11:21:09 +04:00

17 lines
418 B
C#

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