public IHttpActionResult Get()
 {
     try
     {
         var response = _IEnquiry.GetEnquiry();
         return(Ok(response));
     }
     catch (Exception ex)
     {
         throw;
     }
 }