Esempio n. 1
0
 public override bool delete()
 {
     if (cdID == C.ERROR_INT)
         return false;
     string sqlCommand = String.Format("delete from Condition where cdID={0}", cdID);
     Sql sql = new Sql();
     return sql.deleteCondition(sqlCommand);
 }