Exemplo n.º 1
0
 public override bool delete()
 {
     if (hID == C.ERROR_INT)
         return false;
     string sqlCommand = String.Format(@"delete from House where hID={0}", hID);
     Sql sql = new Sql();
     return sql.deleteHouse(sqlCommand);
 }