Kharlamov A.A. Lab Work 08 #11

Closed
Kharlamov wants to merge 6 commits from LabWork_08 into LabWork_07
Showing only changes of commit cee4fc8d77 - Show all commits

View File

@ -0,0 +1,22 @@
using AbstractFoodOrdersContracts.StoragesContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFoodOrdersListImplement.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();
}
}
}