Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public enum IdentifierType
MR,
MOBILE,
NDHM_HEALTH_NUMBER,
HEALTH_ID
HEALTH_ID,
HEALTH_NUMBER
}
}
7 changes: 3 additions & 4 deletions src/In.ProjectEKA.HipService/User/AuthOnConfirm.cs
Original file line number Diff line number Diff line change
@@ -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> identifier)
{
AccessToken = accessToken;
Patient = patient;
Expand All @@ -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> Identifier { get; set; }
}
}