Exemplo n.º 1
0
 private void Btn_Guardar_Click(object sender, EventArgs e)
 {
     EmpresaDAO.CreateCliente(
         Txt_Username.Text, Txt_Username.Text, Txt_Razon_Social.Text, txtCuit.Text, txtMail.Text,
         Txt_Direccion.Text, Txt_Nro_Calle.Text, txtNumeroPiso.Text, txtDepartamento.Text,
         txtCP.Text, txtLocalidad.Text, txtCiudad.Text, txtTelefono.Text);
     this.Close();
 }