예제 #1
0
파일: Condition.cs 프로젝트: Leooonard/CGXM
 public static int GetLastConditionID()
 {
     string sqlCommand = String.Format("select max(cdID) from Condition");
     Sql sql = new Sql();
     return sql.selectMaxConditionID(sqlCommand);
 }