public ArrayList ListarInstrumentos()
 {
     CADInstrumento instrumento = new CADInstrumento();
     return instrumento.ListarInstrumentos();
 }
 public bool BorrarInstrumento(int id)
 {
     CADInstrumento en = new CADInstrumento();
     return en.BorrarInstrumento(id);
 }
 public bool CrearInstrumento()
 {
     CADInstrumento instrumento = new CADInstrumento();
     return instrumento.CrearInstrumento(this);
 }
 public void ActualizaInstrumento()
 {
     CADInstrumento instrumento = new CADInstrumento();
     instrumento.ActualizaInstrumento(this);
 }