private void btn_facturar_Click(object sender, EventArgs e) { this.Hide(); frmFactura factura = new frmFactura(user); factura.Show(); }
private void btRentar_Click(object sender, EventArgs e) { Formularios.frmFactura factura = new Formularios.frmFactura(user); factura.Show(); this.Hide(); }