PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantContracts/StoragesContracts/IBackUpInfo.cs

9 lines
204 B
C#
Raw Normal View History

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