예제 #1
0
 public static int InsertDataTable(DataTable tableToInsert, DataTable tableSchema)
 {
     return(TableDAL.InsertDataTable(TableDAL.DefaultConnectionString, tableToInsert, tableSchema));
 }
예제 #2
0
 public static int InsertDataTable(DataTable tableToInsert, string tableName)
 {
     return(TableDAL.InsertDataTable(tableToInsert, TableDAL.GetTableSchema(tableName)));
 }