PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/StoragesContracts/IBackUpInfo.cs
2024-05-19 17:31:03 +04:00

15 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}