|
|
@ -21,6 +21,18 @@ namespace CoviDok.BLL.User.Managers |
|
|
|
return await handler.Filter(filter); |
|
|
|
} |
|
|
|
|
|
|
|
public async Task<List<Update>> GetUpdatesForCase(Session s, int id) |
|
|
|
{ |
|
|
|
Case c = await handler.GetCase(id); |
|
|
|
if (c == null) throw new KeyNotFoundException(); |
|
|
|
if (handler.IsAuthorized(s.ID, c)) |
|
|
|
{ |
|
|
|
return handler.GetUpdatesForCase(id); |
|
|
|
} |
|
|
|
else throw new UnauthorizedAccessException(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public async Task SetCertified(Session s, int id) |
|
|
|
{ |
|
|
|
Case c = await handler.GetCase(id); |
|
|
@ -96,7 +108,9 @@ namespace CoviDok.BLL.User.Managers |
|
|
|
|
|
|
|
c.LastModificationDate = DateTime.Now; |
|
|
|
Update update = new Update { |
|
|
|
Sender = s.ID, |
|
|
|
CaseID = c.Id, |
|
|
|
SenderID = s.ID, |
|
|
|
SenderRole = s.Type, |
|
|
|
Content = updateMsg, |
|
|
|
CreatedDate = DateTime.Now, |
|
|
|
Images = Images |
|
|
|