Ejemplo n.º 1
0
        private void opRefresh_Termo_Click(object sender, EventArgs e)
        {
            CTRL_Termo_Emprestimo cTermo = new CTRL_Termo_Emprestimo();

            dgvTermo.DataSource = cTermo.GetAll();
            FormatarDgv.FormatarTermo(dgvTermo);
        }
Ejemplo n.º 2
0
        private void opAtualizar_Click(object sender, EventArgs e)
        {
            CTRL_Categoria cCat = new CTRL_Categoria();

            dgvCategoria.DataSource = cCat.GetAll();
            FormatarDgv.FormatarCategoria(dgvCategoria);
        }
Ejemplo n.º 3
0
        private void opRefresh_Equip_Click(object sender, EventArgs e)
        {
            CTRL_Equipamento cEquip = new CTRL_Equipamento();

            dgvEquipamento.DataSource = cEquip.GetAll();
            FormatarDgv.FormatarEquipamento(dgvEquipamento);
        }
Ejemplo n.º 4
0
        private void opRefresh_Est_Click(object sender, EventArgs e)
        {
            CTRL_Estoque cEst = new CTRL_Estoque();

            dgvEstoque.DataSource = cEst.GetAll();
            FormatarDgv.FormatarEstoque(dgvEstoque);
        }
Ejemplo n.º 5
0
        private void btnList_Equip_Click(object sender, EventArgs e)
        {
            CTRL_Equipamento cEquip = new CTRL_Equipamento();

            pnList_Equipamento.BringToFront();
            dgvEquipamento.DataSource = cEquip.GetAll();
            FormatarDgv.FormatarEquipamento(dgvEquipamento);
        }
Ejemplo n.º 6
0
        private void btnInventario_Click(object sender, EventArgs e)
        {
            CTRL_Inventario cMov = new CTRL_Inventario();

            dgvInventario.DataSource = cMov.GetAll();
            FormatarDgv.FormatarInventario(dgvInventario);

            pnInventario.BringToFront();
        }
Ejemplo n.º 7
0
        private void opRefresh_Mov_Click(object sender, EventArgs e)
        {
            CTRL_TEMP_Movimentacao cMov = new CTRL_TEMP_Movimentacao();
            CTRL_Inventario        cInv = new CTRL_Inventario();

            dgvInventario.DataSource = cInv.GetAll();
            FormatarDgv.FormatarInventario(dgvInventario);
            dgvMov.DataSource = cMov.GetAll();
        }