Ejemplo n.º 1
0
 public static int GetLastProgramID()
 {
     string sqlCommand = String.Format("select max(prID) from Program");
     Sql sql = new Sql();
     return sql.selectMaxProgramID(sqlCommand);
 }