PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryContracts/StoragesContracts/IBackUpInfo.cs

15 lines
334 B
C#

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