PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairContracts/StoragesContracts/IBackUpInfo.cs

9 lines
224 B
C#
Raw Normal View History

2024-05-16 17:00:28 +04:00
namespace PlumbingRepairContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}