private void opRefresh_Termo_Click(object sender, EventArgs e) { CTRL_Termo_Emprestimo cTermo = new CTRL_Termo_Emprestimo(); dgvTermo.DataSource = cTermo.GetAll(); FormatarDgv.FormatarTermo(dgvTermo); }
private void opAtualizar_Click(object sender, EventArgs e) { CTRL_Categoria cCat = new CTRL_Categoria(); dgvCategoria.DataSource = cCat.GetAll(); FormatarDgv.FormatarCategoria(dgvCategoria); }
private void opRefresh_Equip_Click(object sender, EventArgs e) { CTRL_Equipamento cEquip = new CTRL_Equipamento(); dgvEquipamento.DataSource = cEquip.GetAll(); FormatarDgv.FormatarEquipamento(dgvEquipamento); }
private void opRefresh_Est_Click(object sender, EventArgs e) { CTRL_Estoque cEst = new CTRL_Estoque(); dgvEstoque.DataSource = cEst.GetAll(); FormatarDgv.FormatarEstoque(dgvEstoque); }
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); }
private void btnInventario_Click(object sender, EventArgs e) { CTRL_Inventario cMov = new CTRL_Inventario(); dgvInventario.DataSource = cMov.GetAll(); FormatarDgv.FormatarInventario(dgvInventario); pnInventario.BringToFront(); }
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(); }