private void swapOrders(Order A, Order B, Route route)
 {
     route.RemoveOrder(B);
     route.AddOrderAt(B, A);
 }