37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
using FoodOrdersContracts.StoragesContracts;
|
|
using System.Reflection;
|
|
|
|
namespace FoodOrdersFileImplement.Implements
|
|
{
|
|
public class BackUpInfo : IBackUpInfo
|
|
{
|
|
private readonly DataFileSingleton source;
|
|
|
|
public BackUpInfo()
|
|
{
|
|
source = DataFileSingleton.GetInstance();
|
|
}
|
|
|
|
public List<T>? GetList<T>() where T : class, new()
|
|
{
|
|
return (List<T>?)source.GetType().GetProperties()
|
|
.FirstOrDefault(x => x.PropertyType.IsGenericType && x.PropertyType.GetGenericArguments()[0] == typeof(T))
|
|
?.GetValue(source);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|