Exemple #1
0
 public static int GetLastConditionID()
 {
     string sqlCommand = String.Format("select max(cdID) from Condition");
     Sql sql = new Sql();
     return sql.selectMaxConditionID(sqlCommand);
 }