Ejemplo n.º 1
0
        public void ModificarPromocion(Promocion promocion)
        {
            PromocionDatos datos = new PromocionDatos();

            datos.Modificar(promocion);
        }
Ejemplo n.º 2
0
        public List <Promocion> ObtenerTodosPromocion(int estado)
        {
            PromocionDatos datos = new PromocionDatos();

            return(datos.SeleccionarTodosPromocion(estado));
        }
Ejemplo n.º 3
0
        public void InsertarProveedor(Promocion promocion)
        {
            PromocionDatos datos = new PromocionDatos();

            datos.Insertar(promocion);
        }
Ejemplo n.º 4
0
        public List <Promocion> ObtenerPromocion(String idProducto, int estado)
        {
            PromocionDatos datos = new PromocionDatos();

            return(datos.SeleccionarPromocionPorId(idProducto, estado));
        }