PIbd22_Kuznetsov_A.V._Sewin.../SewingDresses/SewingDressesDatabaseImplement/Models/BackUpInfo.cs

28 lines
660 B
C#
Raw Permalink Normal View History

2024-06-22 21:11:56 +04:00
using SewingDressesContracts.StoragesContracts;
using SewingDressesDatabaseImplement.Models;
namespace SewingDressesDatabaseImplement.Models
{
public class BackUpInfo : IBackUpInfo
{
public List<T>? GetList<T>() where T : class, new()
{
using var context = new SewingDressesDatabase();
return context.Set<T>().ToList();
}
public Type? GetTypeByModelInterface(string modelInterfaceName)
{
var assembly = typeof(BackUpInfo).Assembly;
var types = assembly.GetTypes();
foreach (var type in types)
{
if (type.IsClass && type.GetInterface(modelInterfaceName) != null)
{
return type;
}
}
return null;
}
}
}