private int ensererAdresse() { mtxtCep.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals; // Supprimer le formatage string vmtxtCep = mtxtCep.Text; //Le texte n'est pas formatage mtxtCep.TextMaskFormat = MaskFormat.IncludePromptAndLiterals; // retourner le formatage Adresse objAdresse = new Adresse(vmtxtCep, cmbCidade.SelectedItem, cmbUF.SelectedItem, txtBairro.Text, txtTipoLogradouro.Text, txtLogradouro.Text, txtNumero.Text, txtComplemento.Text, codeClient); LaConnexion objConectar = new LaConnexion(Properties.Settings.Default.ManiaDeSushiConnectionString); try { objConectar.ouvertConnexion(); objConectar.insererLogradouro("tb_logradouro", objAdresse); this.codeLogradouro = objConectar.retounerCodeLogradouro("tb_logradouro", objAdresse); objConectar.insererAdresse("tb_endereco", objAdresse, this.codeLogradouro); objConectar.fermerLaConnexion(); return this.codeLogradouro; } catch (Exception) { MessageBox.Show("Impossível Inserir este Cliente!. Verifique os dados"); throw; } }
public int insererClient() { mtxtContato1.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals; // tira a formatação string vmtxtContato1 = mtxtContato1.Text; //texto não formatado mtxtContato1.TextMaskFormat = MaskFormat.IncludePromptAndLiterals; // retorna a formatação mtxtContato2.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals; // tira a formatação string vmtxtContato2 = mtxtContato2.Text; //texto não formatado mtxtContato2.TextMaskFormat = MaskFormat.IncludePromptAndLiterals; // retorna a formatação mtxtContato3.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals; // tira a formatação string vmtxtContato3 = mtxtContato3.Text; //texto não formatado mtxtContato3.TextMaskFormat = MaskFormat.IncludePromptAndLiterals; // retorna a formatação Cliente objCliente = new Cliente(txtNom.Text, txtEmail.Text, vmtxtContato1, vmtxtContato2, vmtxtContato3); LaConnexion objConectar = new LaConnexion(Properties.Settings.Default.ManiaDeSushiConnectionString); try { objConectar.ouvertConnexion(); objConectar.insererClient("tb_cliente", objCliente); this.code = objConectar.retounerCodeClient("tb_cliente", objCliente); objConectar.fermerLaConnexion(); return this.code; } catch (Exception) { MessageBox.Show("Impossível Inserir este Cliente!. Verifique os dados"); throw; } }