Exemplo n.º 1
0
 public static int GetLastVillageID()
 {
     string sqlCommand = String.Format("select max(vID) from Village");
     Sql sql = new Sql();
     return sql.selectMaxVillageID(sqlCommand);
 }