-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFuncionarioBLL.cs
90 lines (76 loc) · 2.73 KB
/
FuncionarioBLL.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
using BusinessLogicalLayer.Security;
using DataAccessLayer;
using Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BusinessLogicalLayer
{
public class FuncionarioBLL : IEntityCRUD<Funcionario>, IFuncionarioService
{
private FuncionarioDAL funcionarioDAL = new FuncionarioDAL();
public DataResponse<Funcionario> Autenticar(string email, string senha)
{
//TODO: Validar email e Senha! As implementações não serão feitas
//pq a gente já viu isso
//999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
//999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
//999999999999999999999999999999999999999999999999999999999999999999 vezes
//Após validar, caso esteja tudo fofinho e pronto pra funcionar, chama o banco!
senha = HashUtils.HashPassword(senha);
DataResponse<Funcionario> response = funcionarioDAL.Autenticar(email, senha);
if (response.Sucesso)
{
User.FuncionarioLogado = response.Data[0];
}
return response;
}
public Response Delete(int id)
{
throw new NotImplementedException();
}
public DataResponse<Funcionario> GetByID(int id)
{
throw new NotImplementedException();
}
public DataResponse<Funcionario> GetData()
{
throw new NotImplementedException();
}
public Response Insert(Funcionario item)
{
Response response = new Response();
if (string.IsNullOrWhiteSpace(item.CPF))
{
response.Erros.Add("O cpf deve ser informado");
}
else
{
item.CPF = item.CPF.Trim();
if (!item.CPF.IsCpf())
{
response.Erros.Add("O cpf informado é inválido.");
}
}
string validacaoSenha = SenhaValidator.ValidateSenha(item.Senha, item.DataNascimento);
if (validacaoSenha != "")
{
response.Erros.Add(validacaoSenha);
}
if (response.HasErrors())
{
response.Sucesso = false;
return response;
}
item.EhAtivo = true;
item.Senha = HashUtils.HashPassword(item.Senha);
return funcionarioDAL.Insert(item);
}
public Response Update(Funcionario item)
{
throw new NotImplementedException();
}
}
}