コード例 #1
0
ファイル: FhirController.cs プロジェクト: HowardEdidin/spark
        public Bundle Snapshot()
        {
            string snapshot = Request.Parameter(FhirParameter.SNAPSHOT_ID);
            int    start    = Request.GetIntParameter(FhirParameter.SNAPSHOT_INDEX) ?? 0;
            int    count    = Request.GetIntParameter(FhirParameter.COUNT) ?? Const.DEFAULT_PAGE_SIZE;

            return(service.GetSnapshot(snapshot, start, count));
        }