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);
            }
        }
Example #2
0
        public transaccionPeliculaEN mostrarTransaccionPelicula()
        {
            transaccionPeliculaCAD t = new transaccionPeliculaCAD();

            try
            {
                return(t.mostrarTransaccion(this.idP, this.email));
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
Example #3
0
        public List <int> eliminarAlquiladas()
        {
            transaccionPeliculaCAD t = new transaccionPeliculaCAD();

            try
            {
                return(t.eliminarAlquiladas(this.email));
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }