Example #1
0
        public void comprarPelicula()
        {
            transaccionPeliculaCAD t = new transaccionPeliculaCAD();

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