// GET: Articulo edit Form
        public ActionResult EditarInstrumento(int id)
        {
            List <TipoInstrumento> tipoInstrumentos = GestorBd.ObtenerListaTipos();

            ViewBag.tipoInstrumentos = tipoInstrumentos;
            Articulo ar = GestorBd.SeleccionarInstrumento(id);

            return(View(ar));
        }
        // GET: Detalle del instrumento para confirmar borrado
        public ActionResult BorrarInstrumento(int id)
        {
            Articulo ar = GestorBd.SeleccionarInstrumento(id);

            return(View(ar));
        }