searchedRoute = routePersistence.getRouteByNumber(enteredNumber);
if (searchedRoute == null) {
return;
}
if (this instanceof EnableRouteAction) {
routeControl.enableRoute(searchedRoute);
} else if (this instanceof DisableRouteAction) {
routeControl.disableRoute(searchedRoute);
}
updateHistory(searchedRoute);
}