-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFilmeBLL.cs
124 lines (110 loc) · 3.59 KB
/
FilmeBLL.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Entities;
using DataAccessLayer;
using Entities.ResultSets;
using Entities.Enums;
namespace BusinessLogicalLayer
{
public class FilmeBLL : IEntityCRUD<Filme>, IFilmeService
{
private FilmeDAL filmeDAL = new FilmeDAL();
public Response Delete(int id)
{
Response response = new Response();
if (id<= 0)
{
response.Erros.Add("ID do filme não foi informado.");
}
if (response.Erros.Count != 0)
{
response.Sucesso = false;
return response;
}
return filmeDAL.Delete(id);
}
public DataResponse<Filme> GetByID(int id)
{
return filmeDAL.GetByID(id);
}
public DataResponse<Filme> GetData()
{
return filmeDAL.GetData();
}
public DataResponse<FilmeResultSet> GetFilmes()
{
return filmeDAL.GetFilmes();
}
public DataResponse<FilmeResultSet> GetFilmesByClassificacao(Classificacao classificacao)
{
return filmeDAL.GetFilmesByClassificacao(classificacao);
}
public DataResponse<FilmeResultSet> GetFilmesByGenero(int genero)
{
if (genero <= 0)
{
DataResponse<FilmeResultSet> response = new DataResponse<FilmeResultSet>();
response.Sucesso = false;
response.Erros.Add("Gênero deve ser informado.");
return response;
}
return filmeDAL.GetFilmesByGenero(genero);
}
public DataResponse<FilmeResultSet> GetFilmesByName(string nome)
{
if (string.IsNullOrWhiteSpace(nome))
{
DataResponse<FilmeResultSet> response = new DataResponse<FilmeResultSet>();
response.Sucesso = false;
response.Erros.Add("Nome deve ser informado.");
return response;
}
nome = nome.Trim();
return filmeDAL.GetFilmesByName(nome);
}
public Response Insert(Filme item)
{
Response response = Validate(item);
//TODO: Verificar a existência desse gênero na base de dados
//generoBLL.LerID(item.GeneroID);
//Verifica se tem erros!
if (response.Erros.Count != 0)
{
response.Sucesso = false;
return response;
}
return filmeDAL.Insert(item);
}
public Response Update(Filme item)
{
Response response = Validate(item);
//TODO: Verificar a existência desse gênero na base de dados
//generoBLL.LerID(item.GeneroID);
//Verifica se tem erros!
if (response.Erros.Count != 0)
{
response.Sucesso = false;
return response;
}
return filmeDAL.Update(item);
}
private Response Validate(Filme item)
{
Response response = new Response();
if (item.Duracao <= 10)
{
response.Erros.Add("Duração não pode ser menor que 10 minutos.");
}
if (item.DataLancamento == DateTime.MinValue
||
item.DataLancamento > DateTime.Now)
{
response.Erros.Add("Data inválida.");
}
return response;
}
}
}