diff --git a/src/In.ProjectEKA.HipLibrary/Patient/Model/IdentifierType.cs b/src/In.ProjectEKA.HipLibrary/Patient/Model/IdentifierType.cs index b347e4ed..db6ff3da 100644 --- a/src/In.ProjectEKA.HipLibrary/Patient/Model/IdentifierType.cs +++ b/src/In.ProjectEKA.HipLibrary/Patient/Model/IdentifierType.cs @@ -7,6 +7,7 @@ public enum IdentifierType MR, MOBILE, NDHM_HEALTH_NUMBER, - HEALTH_ID + HEALTH_ID, + HEALTH_NUMBER } } \ No newline at end of file diff --git a/src/In.ProjectEKA.HipService/User/AuthOnConfirm.cs b/src/In.ProjectEKA.HipService/User/AuthOnConfirm.cs index 553a94c7..bce43243 100644 --- a/src/In.ProjectEKA.HipService/User/AuthOnConfirm.cs +++ b/src/In.ProjectEKA.HipService/User/AuthOnConfirm.cs @@ -1,11 +1,10 @@ using In.ProjectEKA.HipLibrary.Patient.Model; -using In.ProjectEKA.HipService.Link.Model; - +using System.Collections.Generic; namespace In.ProjectEKA.HipService.User { public class AuthOnConfirm { - public AuthOnConfirm(string accessToken,Link.Model.Patient patient,Identifier identifier) + public AuthOnConfirm(string accessToken,Link.Model.Patient patient,List identifier) { AccessToken = accessToken; Patient = patient; @@ -14,6 +13,6 @@ public AuthOnConfirm(string accessToken,Link.Model.Patient patient,Identifier id public string AccessToken { get; set; } public Link.Model.Patient Patient { get; set; } - public Identifier Identifier { get; set; } + public List Identifier { get; set; } } } \ No newline at end of file