-
Notifications
You must be signed in to change notification settings - Fork 1
/
FormCadastro.cs
119 lines (104 loc) · 3.34 KB
/
FormCadastro.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
using EasyCall.DAO;
using EasyCall.modelo;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EasyCall
{
public partial class FormCadastro : Form
{
public FormCadastro()
{
InitializeComponent();
}
private void btnCadastrar_Click(object sender, EventArgs e)
{
if (validarCampos())
{
var login = txbLogin.Text;
if (String.IsNullOrEmpty(login))
{
MessageBox.Show("Preencher campo obrigatório 'LOGIN'");
}
//---------------------------
var senha = Utilitarios.criptografarSenha(txbSenha.Text);
if (String.IsNullOrEmpty(senha))
{
MessageBox.Show("Preencher campo obrigatório 'SENHA'");
}
//---------------------------
string cpf = txbCpf.Text;
if (String.IsNullOrEmpty(cpf))
{
MessageBox.Show("Preencher campo obrigatório 'CPF'");
}
if (!Utilitarios.Validacoes.ValidaCPF(cpf))
{
MessageBox.Show("cpf invalido");
return;
}
//---------------------------
var tipo = txbTipo.Text;
if (String.IsNullOrEmpty(tipo))
{
MessageBox.Show("Preencher campo obrigatório 'TIPO'");
}
//---------------------------
var email = txbEmail.Text;
if (String.IsNullOrEmpty(email))
{
MessageBox.Show("Preencher campo obrigatório 'EMAIL'");
}
else
{
var dao = new UsuarioDAO();
dao.insertUsuario(login, senha, email, cpf, tipo);
}
//--------------------------
MessageBox.Show("Cadastrado com Sucesso");
}
}
bool validarCampos()
{
if (String.IsNullOrEmpty(txbLogin.Text))
{
MessageBox.Show("Campo *login orbigatório");
txbLogin.Focus();
return false;
}
if (String.IsNullOrEmpty(txbSenha.Text))
{
MessageBox.Show("Campo *senha obrigatório");
txbSenha.Focus();
return false;
}
if (String.IsNullOrEmpty(txbCpf.Text))
{
MessageBox.Show("Campo *Cpf obrigatório");
txbCpf.Focus();
return false;
}
if (String.IsNullOrEmpty(txbEmail.Text))
{
MessageBox.Show("Campo *email obrigatório");
txbEmail.Focus();
return false;
}
return true;
}
private void btnCancelar_Click(object sender, EventArgs e)
{
this.Close();
}
private void FormCadastro_FormClosing(object sender, FormClosingEventArgs e)
{
//Application.Exit();
}
}
}