public DeletePreview Get(Guid id)
 {
     try
     {
         return(_deleteService.DeleteCasePreview(id));
     }
     catch (UnauthorizedAccessException ex)
     {
         throw new HttpResponseException(Request.CreateErrorResponse(HttpStatusCode.Forbidden, ex.Message));
     }
 }