Пример #1
0
        //INICIALIZADOR DE COMPONENTES
        public AltaProductos(VistaProductos vp)
        {
            InitializeComponent();

            _vp     = vp;
            _ap_ctr = new AltaProductosController(this);
        }
Пример #2
0
        public VistaProductos(UserSessionModel user)
        {
            InitializeComponent();

            _ap_ctr = new AltaProductosController(this);
            _vp_ctr = new VistaProductosController(this);
            _mp_ctr = new ModificacionProductosController(this);
            _dp_ctr = new DeleteProductosController(this);

            if (user.categoria_id == 2)
            {
                _vp_ctr.setViewToSellerUser();
            }
        }