private void ButMod_Click(object sender, EventArgs e)
        {
            ABMempleados emp = new ABMempleados((Empleado)dgvEmp.CurrentRow.DataBoundItem);

            emp.ShowDialog();
            cargarGrilla();
        }
        private void ButAdd_Click(object sender, EventArgs e)
        {
            ABMempleados emp = new ABMempleados();

            emp.ShowDialog();
            cargarGrilla();
        }