BlockLocationService blockLocationService) {
_blockLocationService = blockLocationService;
}
public VehicleStatusBean getVehicleForId(AgencyAndId vehicleId, long time) {
VehicleStatus status = _vehicleStatusService.getVehicleStatusForId(vehicleId);
if (status == null)
return null;
return getStatusAsBean(status, time);
}