Ejemplo n.º 1
0
 public static T FromRow <T>(ExcelDocument.Row row) where T : new()
 {
     return(Implementor <T> .Create(row));
 }
Ejemplo n.º 2
0
 public static T FromRow <T>(DataRow row) where T : new()
 {
     return(Implementor <T> .Create(row));
 }