예제 #1
0
        public FhirResponse History(string type, string id)
        {
            Key key        = Key.Create(type, id);
            var parameters = new HistoryParameters(Request);

            return(_fhirService.History(key, parameters));
        }
예제 #2
0
        public Bundle History(string type, string id)
        {
            DateTimeOffset?since = Request.GetDateParameter(FhirParameter.SINCE);

            return(service.History(type, id, since));
        }