Example #1
0
 public void DeleteStation(int stationKey)
 {
     try
     {
         dl.DeleteAllAdjOfStation(stationKey);
         dl.DeleteStation(stationKey);
     }
     catch (DO.BadStationKeyException e)
     {
         throw new BO.BadStationKeyException(stationKey, e.Message);
     }
 }