This commit is contained in:
andrei-mihnea-cerbu
2024-04-08 01:03:59 +03:00
parent b48d5ee19e
commit 61a55fa735
50 changed files with 80 additions and 52 deletions
@@ -0,0 +1,7 @@
namespace Application.Endpoints.MedicalHistories;
public class MedicalHistoryAuthorisationModel
{
public Guid Id { get; set; }
public List<Guid> Authorisation { get; set; } = new List<Guid>();
}
@@ -84,6 +84,15 @@ public class MedicalHistoryHandler
//TODO add to MongoDB
var medicalHistoryId = medicalHistory.Id;
var newMedicalHistory = new MedicalHistoryAuthorisationModel
{
Id = medicalHistoryId,
Authorisation = new List<Guid>()
};
await _mongoDbService.AddAsync("MedicalHistory", newMedicalHistory);
return new BaseResponse
{
StatusCode = HttpStatusCodes.Created,