-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepositoryServices.cs
86 lines (76 loc) · 2.08 KB
/
RepositoryServices.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
using DataTransferObjects;
using IDAL;
namespace BL
{
public class RepositoryServices : IBL.IRepositoryBL
{
private readonly IRepositoryDAL repositoryDal;
public RepositoryServices(IRepositoryDAL _repositoryDAL)
{
repositoryDal = _repositoryDAL;
}
public bool AddNew(RepositoryDTO repository)
{
try
{
if (repository.UserId <= 0)
{
throw new ArgumentException("UserId must be a valid user ID.");
}
return repositoryDal.AddNew(repository);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
return false;
}
}
public bool Delete(int id)
{
try
{
RepositoryDTO repositoryDto = repositoryDal.GetAll().Find(repository => repository.RepositoryId == id) ?? new RepositoryDTO();
return repositoryDal.Delete(repositoryDto);
}
catch (Exception)
{
return false;
}
}
public RepositoryDTO Get(int id)
{
try
{
RepositoryDTO repositoryDto = repositoryDal.GetAll().Find(repository => repository.RepositoryId == id) ?? new RepositoryDTO();
return repositoryDto;
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
return null;
}
}
public List<RepositoryDTO> GetAll()
{
try
{
return repositoryDal.GetAll();
}
catch (Exception)
{
return new List<RepositoryDTO>();
}
}
public bool Update(RepositoryDTO repository)
{
try
{
return repositoryDal.Update(repository);
}
catch (Exception)
{
return false;
}
}
}
}