private void consultarCategoriasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmGestionCategoria frmCategoria = new frmGestionCategoria();

            frmCategoria.ShowDialog();
        }
        private void gestiónCategoriasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmGestionCategoria frm = new frmGestionCategoria();

            frm.Show();
        }