Esempio n. 1
0
        public FhirResponse Delete(string type, string id)
        {
            Key          key      = Key.Create(type, id);
            FhirResponse response = service.Delete(key);

            return(response);
        }
Esempio n. 2
0
 public HttpResponseMessage Delete(string type, string id)
 {
     service.Delete(type, id);
     return(Request.CreateResponse(HttpStatusCode.NoContent));
 }