Example #1
0
 public static int GetLastHouseID()
 {
     string sqlCommand = String.Format("select max(hID) from House");
     Sql sql = new Sql();
     return sql.selectMaxHouseID(sqlCommand);
 }