本文整理汇总了C#中FhirClient.History方法的典型用法代码示例。如果您正苦于以下问题:C# FhirClient.History方法的具体用法?C# FhirClient.History怎么用?C# FhirClient.History使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FhirClient
的用法示例。
在下文中一共展示了FhirClient.History方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: History
public void History()
{
DateTimeOffset timestampBeforeCreationAndDeletions = DateTimeOffset.Now;
CreateEditDelete(); // this test does a create, update, update, delete (4 operations)
FhirClient client = new FhirClient(testEndpoint);
Bundle history = client.History(createdTestPatientUrl);
Assert.IsNotNull(history);
Assert.AreEqual(4, history.Entry.Count());
Assert.AreEqual(3, history.Entry.Where(entry => entry.Resource != null).Count());
Assert.AreEqual(1, history.Entry.Where(entry => entry.IsDeleted()).Count());
//// Now, assume no one is quick enough to insert something between now and the next
//// tests....
history = client.TypeHistory("Patient",timestampBeforeCreationAndDeletions);
Assert.IsNotNull(history);
Assert.AreEqual(4, history.Entry.Count());
Assert.AreEqual(3, history.Entry.Where(entry => entry.Resource != null).Count());
Assert.AreEqual(1, history.Entry.Where(entry => entry.IsDeleted()).Count());
history = client.WholeSystemHistory(timestampBeforeCreationAndDeletions);
Assert.IsNotNull(history);
Assert.AreEqual(3, history.Entry.Count());
Assert.AreEqual(2, history.Entry.Where(entry => entry.Resource != null).Count());
Assert.AreEqual(1, history.Entry.Where(entry => entry.IsDeleted()).Count());
}
示例2: History
public void History()
{
DateTimeOffset timestampBeforeCreationAndDeletions = DateTimeOffset.Now;
CreateEditDelete(); // this test does a create, update, update, delete (4 operations)
FhirClient client = new FhirClient(testEndpoint);
Bundle history = client.History(createdTestOrganizationUrl);
Assert.IsNotNull(history);
Assert.AreEqual(4, history.Entries.Count());
Assert.AreEqual(3, history.Entries.Where(entry => entry is ResourceEntry).Count());
Assert.AreEqual(1, history.Entries.Where(entry => entry is DeletedEntry).Count());
// Now, assume no one is quick enough to insert something between now and the next
// tests....
history = client.TypeHistory<Organization>(timestampBeforeCreationAndDeletions);
Assert.IsNotNull(history);
Assert.AreEqual(4, history.Entries.Count());
Assert.AreEqual(3, history.Entries.Where(entry => entry is ResourceEntry).Count());
Assert.AreEqual(1, history.Entries.Where(entry => entry is DeletedEntry).Count());
//EK: Our server can't yet do this
//history = client.WholeSystemHistory(now);
//Assert.IsNotNull(history);
//Assert.AreEqual(3, history.Entries.Count());
//Assert.AreEqual(2, history.Entries.Where(entry => entry is ResourceEntry).Count());
//Assert.AreEqual(1, history.Entries.Where(entry => entry is DeletedEntry).Count());
}
示例3: History
public void History()
{
DateTimeOffset now = DateTimeOffset.Now;
CreateEditDelete();
FhirClient client = new FhirClient(testEndpoint);
Bundle history = client.History(createdTestOrganization);
Assert.IsNotNull(history);
Assert.AreEqual(3, history.Entries.Count());
Assert.AreEqual(2, history.Entries.Where(entry => entry is ResourceEntry).Count());
Assert.AreEqual(1, history.Entries.Where(entry => entry is DeletedEntry).Count());
// Now, assume no one is quick enough to insert something between now and the next
// tests....
history = client.History<Organization>(now);
Assert.IsNotNull(history);
Assert.AreEqual(3, history.Entries.Count());
Assert.AreEqual(2, history.Entries.Where(entry => entry is ResourceEntry).Count());
Assert.AreEqual(1, history.Entries.Where(entry => entry is DeletedEntry).Count());
history = client.History(now);
Assert.IsNotNull(history);
Assert.AreEqual(3, history.Entries.Count());
Assert.AreEqual(2, history.Entries.Where(entry => entry is ResourceEntry).Count());
Assert.AreEqual(1, history.Entries.Where(entry => entry is DeletedEntry).Count());
}
示例4: TryParse
public void TryParse()
{
var client = new FhirClient(new Uri("http://spark.furore.com/fhir"));
var history = client.History<Patient>("15");
}