17 lines
424 B
C#
17 lines
424 B
C#
|
using SushiBarContracts.BusinessLogicsContracts;
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|