示例#1
0
 /// <summary>
 /// Load động dữ liệu theo table name
 /// </summary>
 /// <param name="tableSource"></param>
 /// <param name="whereCause"></param>
 /// <param name="orderBy"></param>
 public void GetAllDataByTableName(DataTable tableSource, string whereCause = "", string orderBy = "")
 {
     if (oDLBase == null)
     {
         oDLBase = new DL.DLBase();
     }
     oDLBase.GetAllDataByTableName(tableSource, whereCause, orderBy);
 }