示例#1
0
 public IModelEntityConverterBuilder <TEntity> AddListFrom <T>(IModelEntityListFromConverter <T, TEntity> converter)
 {
     convertObj.AddListFrom <T>(converter); return(this);
 }
示例#2
0
 public bool AddListFrom <T>(IModelEntityListFromConverter <T, TEntity> converter)
 {
     _converters[ConvType.FromList].Add(typeof(T), converter);  return(true);
 }
示例#3
0
 public void AddListFrom <T>(IModelEntityListFromConverter <T, TEntity> converter) => _converters[ConvType.FromList].Add(typeof(T), converter);
示例#4
0
 public IModelEntityHelperBuilder <TEntity> AddListFromConverter <T>(IModelEntityListFromConverter <T, TEntity> converter)
 {
     helper.ConverterMaker.AddListFrom <T>(converter);
     return(this);
 }
示例#5
0
 public IDalBuilder <TEntity, TSource> AddListFrom <T>(IModelEntityListFromConverter <T, TEntity> converter)
 {
     cnvBuilder.AddListFrom <T>(converter); return(this);
 }