2024-06-02 22:46:22 +04:00
|
|
|
|
using ConfectioneryContracts.StoragesContracts;
|
|
|
|
|
using System;
|
2024-06-02 21:06:40 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryListImplement.Implements
|
|
|
|
|
{
|
2024-06-02 22:46:22 +04:00
|
|
|
|
public class BackUpInfo : IBackUpInfo
|
2024-06-02 21:06:40 +04:00
|
|
|
|
{
|
|
|
|
|
public List<T>? GetList<T>() where T : class, new()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Type? GetTypeByModelInterface(string modelInterfaceName)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|