Exemplo n.º 1
0
        public ControlProduccion()
        {
            listaProducto = new List<DAL.Producto>();
            produccion = new DAL.Produccion();

            this.Dock = DockStyle.Fill;

            InitializeComponent();

            this.dgvPlatos.ColumnHeadersDefaultCellStyle.Font = new Font("Microsoft Sans Serif", 10, FontStyle.Italic);
            this.dgvPlatos.DefaultCellStyle.Font = new Font("Microsoft Sans Serif", 10);

            PlatosCmBox();
            llenadoComboBoxDataGridView();
        }
Exemplo n.º 2
0
        public ControlProduccion()
        {
            listaProducto = new List <DAL.Producto>();
            produccion    = new DAL.Produccion();


            this.Dock = DockStyle.Fill;

            InitializeComponent();

            this.dgvPlatos.ColumnHeadersDefaultCellStyle.Font = new Font("Microsoft Sans Serif", 10, FontStyle.Italic);
            this.dgvPlatos.DefaultCellStyle.Font = new Font("Microsoft Sans Serif", 10);

            PlatosCmBox();
            llenadoComboBoxDataGridView();
        }
Exemplo n.º 3
0
 public static void LLenarDatosProduccion(DAL.Produccion produccion, List <DAL.Producto> actualizaStock)
 {
     DAL.Produccion.llenarDatosProduccion(produccion, actualizaStock);
 }