feature: FHIR R4 Inbound Facade
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
public interface IExternalIdentifierService
|
||||
{
|
||||
Task<Guid?> ResolveInternalIdAsync(
|
||||
ExternalResourceType resourceType, string system, string value);
|
||||
|
||||
Task LinkAsync(
|
||||
ExternalResourceType resourceType, Guid internalId, string system, string value);
|
||||
|
||||
Task<(string System, string Value)?> FindPrimaryIdentifierAsync(
|
||||
ExternalResourceType resourceType, Guid internalId, string[] acceptedSystems);
|
||||
}
|
||||
Reference in New Issue
Block a user