ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/StoragesContracts/IBackUpInfo.cs
2024-06-01 17:37:58 +04:00

15 lines
335 B
C#

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