Exemple #1
0
 public static T Delete <T>(this IFhirbaseStore store, ResourceKey key) where T : Resource
 {
     return((T)store.Delete(key));
 }
Exemple #2
0
 public static T Create <T>(this IFhirbaseStore store, T resource) where T : Resource
 {
     return((T)store.Create((Resource)resource));
 }
Exemple #3
0
 public static T VersionRead <T>(this IFhirbaseStore store, ResourceKey key) where T : Resource
 {
     return((T)store.VersionRead(key));
 }