PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/StoragesContracts/IBackUpInfo.cs
Arkadiy Radaev 44fa88599e res8
2024-05-17 13:28:57 +04:00

11 lines
199 B
C#

namespace GiftShopContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}