예제 #1
0
        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));
        }
예제 #2
0
        public FhirResponse History(string type, string id)
        {
            Key key        = Key.Create(type, id);
            var parameters = new HistoryParameters(Request);

            return(_fhirService.History(key, parameters));
        }
예제 #3
0
        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));
        }