//Operacion DELETE
        public int DeleteTipoVehiculo(int id)
        {
            SqlCommand _comando = MetodosCRUDtipoVehiculo.CrearComandoProcDelete_tv();

            _comando.Parameters.AddWithValue("@id", id);

            return(MetodosCRUDtipoVehiculo.EjecutarComandoProcAlmacDelete_tv(_comando));
        }
        //Operacion SELECT
        public static DataTable ListTipoVehiculo()
        {
            SqlCommand _comando = MetodosCRUDtipoVehiculo.CrearComandoSelect_tv();

            _comando.CommandText = "select * from Tipo_Vehiculo";

            return(MetodosCRUDtipoVehiculo.EjecutarComandoSelect_tv(_comando));
        }
        //Operacion UPDATE
        public int UpdateTipoVehiculo(int id, string nombre)
        {
            SqlCommand _comando = MetodosCRUDtipoVehiculo.CrearComandoProcUpdate_tv();

            _comando.Parameters.AddWithValue("@id", id);
            _comando.Parameters.AddWithValue("@nombre", nombre);

            return(MetodosCRUDtipoVehiculo.EjecutarComandoProcAlmacUpdate_tv(_comando));
        }