18 lines
356 B
C#
18 lines
356 B
C#
|
using SushiBarContracts.StoragesContracts;
|
|||
|
|
|||
|
namespace SushiBarListImplement.Implements
|
|||
|
{
|
|||
|
public class BackUpInfo : IBackUpInfo
|
|||
|
{
|
|||
|
public List<T>? GetList<T>() where T : class, new()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public Type? GetTypeByModelInterface(string modelInterfaceName)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|