10 lines
219 B
C#
10 lines
219 B
C#
|
namespace PizzeriaContracts.StoragesContracts
|
|||
|
{
|
|||
|
public interface IBackUpInfo
|
|||
|
{
|
|||
|
List<T>? GetList<T>() where T : class, new();
|
|||
|
Type? GetTypeByModelInterface(string modelInterfaceName);
|
|||
|
}
|
|||
|
|
|||
|
}
|