public HttpResponseMessage ListDocumentTypes(int workflowId)
 {
     IList<DocumentsModel> response;
     using (DocumentTier dT = new DocumentTier())
     {
         response = dT.ListDocumentTypes(workflowId);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }