include insignia
This commit is contained in:
parent
caf3b3ddc6
commit
6917e8e573
1 changed files with 6 additions and 0 deletions
|
|
@ -1071,6 +1071,12 @@ namespace BMA.EHR.Insignia.Service.Controllers
|
|||
};
|
||||
await _context.InsigniaNotes.AddAsync(insigniaNote);
|
||||
await _context.SaveChangesAsync();
|
||||
insigniaNote = await _context.InsigniaNotes
|
||||
.Include(x => x.InsigniaNoteProfiles)
|
||||
.ThenInclude(x => x.Profile)
|
||||
.Include(x => x.InsigniaNoteProfiles)
|
||||
.ThenInclude(x => x.RequestInsignia)
|
||||
.FirstOrDefaultAsync(x => x.Id == insigniaNote.Id);
|
||||
}
|
||||
var requestOlds = await _context.InsigniaRequests
|
||||
.Where(p => p.Period == insigniaPeriod)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue