-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCadastroUser.cs
164 lines (146 loc) · 5.67 KB
/
CadastroUser.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
using PetsCareConsole2._0.BancoDados;
using PetsCareConsole2._0.Criptografy;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PetsCareConsole2._0
{
public class CadastroUser //Ok
{
public int ID { get; private set; }
public string Nome { get; private set; }
public string Apelido { get; private set; }
public string Telefone { get; private set; }
public string CPF { get; private set; }
public string Email { get; private set; }
public string Dat_Nasc { get; private set; }
public int ID_Endereco { get; private set; }
public string Usuario { get; private set; }
public string Senha { get; private set; }
string user = "";
public void CadUser()
{
Console.WriteLine("Informe o nome de acesso:");
user = Console.ReadLine();
SenhaNova();
}
string senha1 = "";
string senha2 = "";
public CadastroUser(string usuario)
{
Usuario = usuario;
}
public CadastroUser()
{
}
//public CadastroUser(string usuario)
//{
// Usuario = usuario;
//}
public void SenhaNova()
{
Console.Clear();
Console.WriteLine($"{user} agora só cadastrar a senha:");
Console.WriteLine("Informe a Senha:");
senha1 = Console.ReadLine();
int Cont = senha1.Length;
if (Cont < 3)
{
Console.Write($"\n{user} a senha é muito Curta, Refaça\t");
Console.Write("Precione qualquer Tecla\n");
Console.ReadKey();
SenhaNova();
}
else
{
Console.WriteLine($"{user} Repita a Senha Novamente:");
senha2 = Console.ReadLine();
if (senha1 != senha2)
{
Console.WriteLine("Senha não conefere!");
Console.WriteLine("Nova Tentativa em: 30s");
Thread.Sleep(1500);
for (int i = 30; i >= 0; i--)
{
Console.Write($"{i}s");
Thread.Sleep(100);
Console.Clear();
}
SenhaNova();
}
else
{
Usuario = user;
Senha = senha2;
Console.Write("Informe o nome Completo: ");
Nome = Console.ReadLine();
Console.Write("Informe seu Apelido: ");
Apelido = Console.ReadLine();
Console.Write("Telefone de Contato: ");
Telefone = Console.ReadLine();
Console.Write("Seu CPF: ");
CPF = Console.ReadLine();
Console.Write("E-mail: ");
Email = Console.ReadLine();
Console.Write("Data de Nascimento: ");
Dat_Nasc = Console.ReadLine();
ID_Endereco = 1;
Console.Write("Cadastro Ok");
Thread.Sleep(1500);
Save();
}
}
}
public void Save()
{
using (var conn = new SqlConnection(CONXBD.DBConnecting))
{
conn.Open();
var cmd = conn.CreateCommand();
cmd.CommandText = "INSERT INTO Tutores(Nome, Apelido, Telefone, CPF, Email, Dat_Nasc, ID_Endereco, Usuario, Senha) " +
"VALUES (@Nome, @Apelido, @Telefone, @CPF, @Email, @Dat_Nasc, @ID_Endereco, @Usuario , @Senha)";
cmd.Parameters.AddWithValue("@Nome", Nome);
cmd.Parameters.AddWithValue("@Apelido", Apelido);
cmd.Parameters.AddWithValue("@Telefone", Telefone);
cmd.Parameters.AddWithValue("@CPF", CPF);
cmd.Parameters.AddWithValue("@Email", Email);
cmd.Parameters.AddWithValue("@Dat_Nasc", Dat_Nasc);
cmd.Parameters.AddWithValue("@ID_Endereco", ID_Endereco);
cmd.Parameters.AddWithValue("@Usuario", Usuario);
cmd.Parameters.AddWithValue("@Senha", HashGenerator.GenerateHash(Senha, HashType.MD5).ToUpper());
cmd.ExecuteNonQuery();
}
}
//public bool IsValid()
//{
// return ID > 0;
//}
//public CadastroUser(string usuario)
//{
// using (var conn = new SqlConnection(CONXBD.DBConnecting))
// {
// conn.Open();
// var cmd = conn.CreateCommand();
// cmd.CommandText = "SELECT ID, Usuario, Senha FROM Tutores WHERE Usuario = @Usuario";
// cmd.Parameters.AddWithValue("@Usuario", Usuario);
// using (var reader = cmd.ExecuteReader())
// {
// if (reader.Read())
// {
// ID = reader.GetInt32(0);
// Usuario = reader.GetString(8);
// Senha = reader.GetString(9);
// }
// }
// }
//}
//public CadastroUser(string usuario, string senha)
//{
// Usuario = usuario;
// Senha = senha;
//}
}
}