public transaccionSerieEN mostrarTransaccionSerie() { transaccionSerieCAD t = new transaccionSerieCAD(); try { return(t.mostrarTransaccion(this.idS, this.email)); } catch (Exception ex) { throw new Exception(ex.Message); } }
public void comprarSerie() { transaccionSerieCAD t = new transaccionSerieCAD(); try { t.comprar(this.idS, this.email); } catch (Exception ex) { throw new Exception(ex.Message); } }