PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairListImplement/Implements/BackUpInfo.cs

16 lines
366 B
C#
Raw Normal View History

2024-05-16 17:00:28 +04:00
using PlumbingRepairContracts.StoragesContracts;
namespace PlumbingRepairListImplement.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();
}
}
}