Esempio n. 1
0
 public override string ToString()
 {
     if (Profile != null)
     {
         return(string.Format("{0} ({1})", Code, Profile));
     }
     else
     {
         return(Code.GetLiteral());
     }
 }
Esempio n. 2
0
 // [WMR 20160421] Slow, based on reflection...
 public static string FhirTypeToFhirTypeName(FHIRDefinedType type)
 {
     return(type.GetLiteral());
 }
Esempio n. 3
0
 public static string CanonicalUriForFhirCoreType(FHIRDefinedType type)
 {
     return(CanonicalUriForFhirCoreType(type.GetLiteral()));
 }
Esempio n. 4
0
 public static ResourceIdentity Core(FHIRDefinedType type)
 {
     return(ResourceIdentity.Core(type.GetLiteral()));
 }