public FhirResponse Snapshot() { string snapshot = Request.GetParameter(FhirParameter.SNAPSHOT_ID); int start = Request.GetIntParameter(FhirParameter.SNAPSHOT_INDEX) ?? 0; return(_fhirService.GetPage(snapshot, start)); }
public FhirResponse Snapshot() { string snapshot = Request.GetParameter(FhirParameter.SNAPSHOT_ID); int start = Request.GetIntParameter(FhirParameter.SNAPSHOT_INDEX) ?? 0; int count = Request.GetIntParameter(FhirParameter.COUNT) ?? Const.DEFAULT_PAGE_SIZE; return(service.GetPage(snapshot, start, count)); }