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

            ObjectParameter IdVehiculo = null;

            IdVehiculo       = new ObjectParameter("IdVehiculo", typeof(Int32));
            IdVehiculo.Value = DBNull.Value;

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

            IdVehiculoRetorno = Convert.ToInt32(IdVehiculo.Value);

            return(IdVehiculoRetorno);
        }