Example #1
0
 public static int GetLastMainRoadID()
 {
     string sqlCommand = String.Format("select max(mrID) from MainRoad");
     Sql sql = new Sql();
     return sql.selectMaxMainRoadID(sqlCommand);
 }