Ejemplo n.º 1
0
 public static string GetFhirTypeForType(Type type)
 {
     if (!FhirCsTypeToString.ContainsKey(type))
     {
         return(null);
     }
     else
     {
         return(FhirCsTypeToString[type]);
     }
 }
Ejemplo n.º 2
0
 public static string GetResourceNameForType(Type resourceType)
 {
     if (!FhirCsTypeToString.ContainsKey(resourceType))
     {
         return(null);
     }
     else
     {
         return(FhirCsTypeToString[resourceType]);
     }
 }