public int ActualizarVehiculoModalView(VehiculosModelView VH)
        {
            int IdVehiculoRetorno     = 0;
            SegurosDBEntities context = new SegurosDBEntities();

            IdVehiculoRetorno = context.SP_U_Vehiculo(
                VH.IdVehiculo,
                VH.IdEmpresa,
                VH.IdUnidadNegocio,
                VH.IdCentroCosto,
                VH.IdTipoVehiculo,
                VH.IdMarca,
                VH.IdModelo,
                VH.PlacaAnterior,
                VH.Placa,
                VH.SerieCarroceria,
                VH.SerieMotor,
                VH.Clase,                   // especificado funcional
                VH.AnoFabricado,
                VH.IdColor,
                VH.NroAsientos,
                VH.TimonCambiado,
                VH.IdMoneda,
                VH.ValorComercial,
                VH.IdEstado,
                VH.FechaInicio,
                VH.FechaFin
                );

            return(IdVehiculoRetorno);
        }