|
|
@ -113,7 +113,7 @@ namespace CoviDok.BLL.User.Managers |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public async Task<Case> CreateCase(Session s, int DoctorId, int ChildId, string Title, DateTime startDate) |
|
|
|
public async Task<Case> CreateCase(Session s, int DoctorId, int ChildId, string Title, DateTime startDate, Api.Priority priority) |
|
|
|
{ |
|
|
|
// TODO szülő csak saját gyereket jelenthet
|
|
|
|
Case c = new Case { |
|
|
@ -125,12 +125,13 @@ namespace CoviDok.BLL.User.Managers |
|
|
|
CreatedDate = DateTime.Now, |
|
|
|
LastModificationDate = DateTime.Now, |
|
|
|
CaseStatus = CaseStatus.InProgress, |
|
|
|
Assignee = s.Id |
|
|
|
Assignee = s.Id, |
|
|
|
Priority = priority |
|
|
|
}; |
|
|
|
return await handler.AddCase(c); |
|
|
|
} |
|
|
|
|
|
|
|
public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images) |
|
|
|
public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images, Api.Priority priority) |
|
|
|
{ |
|
|
|
Case c = await handler.GetCase(id); |
|
|
|
if (c == null) throw new KeyNotFoundException("Case Id not found: " + id); |
|
|
@ -145,7 +146,7 @@ namespace CoviDok.BLL.User.Managers |
|
|
|
if (s.Id == c.ParentId) c.Assignee = c.DoctorId; // Ha szülő updatel, az assignee az orvos lesz
|
|
|
|
// TODO Ha a doki VAGY asszisztense frissít
|
|
|
|
if (s.Id == c.DoctorId) c.Assignee = c.ParentId; // Ha doki frissít, a szülőhöz kerül
|
|
|
|
|
|
|
|
c.Priority = priority; |
|
|
|
c.LastModificationDate = DateTime.Now; |
|
|
|
Update update = new Update { |
|
|
|
CaseId = c.Id, |
|
|
|