public int AddBySQL(Hashtable ht, string tableName)
 {
     return(DbHelperSql.DynamicInsert(ht, tableName));
 }
 public int UpdateBySQL(Hashtable ht, string tableName, string whereFiledName, int whereFiledVlaue)
 {
     return(DbHelperSql.DynamicUpdate(ht, tableName, whereFiledName, whereFiledVlaue, 1));
 }