コード例 #1
0
ファイル: FhirService.cs プロジェクト: HowardEdidin/spark
        private bool entryExists(string collection, string id)
        {
            // bool should be: status: exists, nonexistent, deleted?

            Uri         location = ResourceIdentity.Build(collection, id);
            BundleEntry existing = _store.FindEntryById(location);

            return(existing != null);
        }