ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/StoragesContract/IBackUpInfo.cs
2023-03-18 20:16:32 +04:00

15 lines
339 B
C#

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