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