//Operacion DELETE
        public int DeleteConductor(int id)
        {
            SqlCommand _comando = MetodosCRUDConductor.CrearComandoProcDelete();

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

            return(MetodosCRUDConductor.EjecutarComandoProcAlmacDelete(_comando));
        }