コード例 #1
0
ファイル: PatientManager.cs プロジェクト: hmandirola/Open-RSD
 public Hl7.Fhir.Model.Bundle GetPatientByIdentifier(Common.Constants.DomainName system, string value)
 {
     return(GetPatientByIdentifier(system.Value, value));
 }
コード例 #2
0
ファイル: PatientManager.cs プロジェクト: hmandirola/Open-RSD
        public bool ExistsPatient(Common.Constants.DomainName system, string value)
        {
            var bundle = GetPatientByIdentifier(system.Value, value);

            return(bundle.Total.HasValue && (bundle.Total > 0));
        }