private void volverToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmCustomer cust = new frmCustomer(id_usuario, usuario, cargo);

            cust.Show();
            this.SetVisibleCore(false);
        }
        private void btnControlTrabajo_Click_1(object sender, EventArgs e)
        {
            frmCustomer frm_cliente = new frmCustomer(id_usuario, usuario, cargo);

            frm_cliente.Show();
            this.SetVisibleCore(false);
        }