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