Add Missing Field
This commit is contained in:
parent
84bb010535
commit
3b6d444ad6
1 changed files with 2 additions and 0 deletions
|
|
@ -609,9 +609,11 @@ namespace BMA.EHR.Insignia.Service.Controllers
|
||||||
p.LastUpdatedAt,
|
p.LastUpdatedAt,
|
||||||
p.CreatedAt,
|
p.CreatedAt,
|
||||||
p.InsigniaNoteProfileId,
|
p.InsigniaNoteProfileId,
|
||||||
|
CitizenId = p.Profile == null ? "" : p.Profile.CitizenId,
|
||||||
Prefix = p.Profile == null ? "" : p.Profile.Prefix,
|
Prefix = p.Profile == null ? "" : p.Profile.Prefix,
|
||||||
Position = p.Profile == null ? "" : p.Profile.Position,
|
Position = p.Profile == null ? "" : p.Profile.Position,
|
||||||
FullName = p.Profile == null ? "" : $"{p.Profile.Prefix}{p.Profile.FirstName} {p.Profile.LastName}",
|
FullName = p.Profile == null ? "" : $"{p.Profile.Prefix}{p.Profile.FirstName} {p.Profile.LastName}",
|
||||||
|
ProfileType = p.Profile == null ? "" : p.Profile.ProfileType,
|
||||||
p.RequestInsignia,
|
p.RequestInsignia,
|
||||||
p.RequestInsigniaId,
|
p.RequestInsigniaId,
|
||||||
p.RequestInsigniaShortName,
|
p.RequestInsigniaShortName,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue