Пример #1
0
 private void registrarNuevoEmpleadoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     FormRegistrarPersona registrarEmpleado = new FormRegistrarPersona(Persona.eRol.Empleado);
     registrarEmpleado.MdiParent = this;
     registrarEmpleado.Show();
 }
Пример #2
0
 private void registrarNuevoClienteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     FormRegistrarPersona registrarCliente = new FormRegistrarPersona(Persona.eRol.Cliente);
     registrarCliente.MdiParent = this;
     registrarCliente.Show();
 }