Ejemplo n.º 1
0
 public ArrayList ListarInstrumentos()
 {
     CADInstrumento instrumento = new CADInstrumento();
     return instrumento.ListarInstrumentos();
 }
Ejemplo n.º 2
0
 public bool BorrarInstrumento(int id)
 {
     CADInstrumento en = new CADInstrumento();
     return en.BorrarInstrumento(id);
 }
Ejemplo n.º 3
0
 public bool CrearInstrumento()
 {
     CADInstrumento instrumento = new CADInstrumento();
     return instrumento.CrearInstrumento(this);
 }
Ejemplo n.º 4
0
 public void ActualizaInstrumento()
 {
     CADInstrumento instrumento = new CADInstrumento();
     instrumento.ActualizaInstrumento(this);
 }