コード例 #1
0
        public transaccionSerieEN mostrarTransaccionSerie()
        {
            transaccionSerieCAD t = new transaccionSerieCAD();

            try
            {
                return(t.mostrarTransaccion(this.idS, this.email));
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
コード例 #2
0
        public void comprarSerie()
        {
            transaccionSerieCAD t = new transaccionSerieCAD();

            try
            {
                t.comprar(this.idS, this.email);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }