в старом приложении я использую отдельную карту для преобразования любой модели в модель и обратно.
Теперь я хочу использовать универсальную функцию, но универсальная функция не вызывает визуальное отображение
public class GenericBll<TVModel, TMModel> where TVModel : class where TMModel : class
{
public virtual IEnumerable<TVModel> GetAll()
{
var a = Instance.GetAll_asQuery().ToList();
var b = a.Select(q=> Mapper.Map<TVModel,TMModel>(q)).ToList();
//mapper not return true thing
return b;
}
}
это мой универсальный картограф
public partial class Mapper
{
internal static TVModel Map<TMModel>(TMModel q) where TMModel : class where TVModel : class
{
//want to this function call another but always run this :(
throw new NotImplementedException();
}
public static MM.GroupDevides Map(GroupDevides e)
{
//map to MM.GroupDevides
}
public static GroupDevides Map(MM.GroupDevides e)
{
//map to GroupDevides
}
}
я, м, новенький, пожалуйста, помогите