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