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

18 lines
356 B
C#

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