DD.WellWorkover.Cloud/AsbCloudInfrastructure/TinyMapper.cs

25 lines
511 B
C#
Raw Normal View History

using System.Reflection;
namespace AsbCloudApp
{
public class TinyMapper<Tout, Tin>
where Tout: new()
{
private ConstructorInfo[] ctors;
public TinyMapper()
{
ctors = typeof(Tin).GetConstructors();
typeof(Tin).GetProperties();
}
//public Tout Map(Tin original, params object?[]? ctorParameters)
//{
// var result = new Tout();
// var convertion
// return result;
//}
}
}