public Bundle History(string type, string id) { DateTimeOffset?since = Request.GetDateParameter(FhirParameter.SINCE); string sortby = Request.GetParameter(FhirParameter.SORT); return(service.History(type, id, since, sortby)); }
public FhirResponse History(string type, string id) { Key key = Key.Create(type, id); var parameters = new HistoryParameters(Request); return(_fhirService.History(key, parameters)); }
public FhirResponse History(string type, string id) { Key key = Key.Create(type, id); DateTimeOffset?since = Request.GetDateParameter(FhirParameter.SINCE); string sortby = Request.GetParameter(FhirParameter.SORT); return(service.History(key, since, sortby)); }