forked from ProjectEKA/hip-service
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-3773 | Add. link patient abha identifier after successful linking
- Loading branch information
1 parent
e5757fb
commit ddd2b36
Showing
9 changed files
with
143 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using In.ProjectEKA.HipLibrary.Patient.Model; | ||
using In.ProjectEKA.HipService.Common.Model; | ||
using In.ProjectEKA.HipService.Link.Model; | ||
using In.ProjectEKA.HipService.UserAuth.Model; | ||
using Microsoft.AspNetCore.Http; | ||
|
||
namespace In.ProjectEKA.HipService.Discovery | ||
{ | ||
public static class DiscoveryReqMap { | ||
public static Dictionary<string, string> AbhaIdentifierMap = new Dictionary<string, string>(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/In.ProjectEKA.HipService/Link/Model/PatientAbhaIdentifier.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace In.ProjectEKA.HipService.Link.Model | ||
{ | ||
public class PatientAbhaIdentifier | ||
{ | ||
public string abhaNumber { get; } | ||
public string abhaAddress { get; } | ||
|
||
public PatientAbhaIdentifier(string abhaNumber, string abhaAddress) | ||
{ | ||
this.abhaNumber = abhaNumber; | ||
this.abhaAddress = abhaAddress; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters