using ConfectioneryContracts.StoragesContracts; namespace ConfectioneryListImplement.Implements { public class BackUpInfo : IBackUpInfo { public List? GetList() where T : class, new() { throw new NotImplementedException(); } public Type? GetTypeByModelInterface(string modelInterfaceName) { throw new NotImplementedException(); } } }