Ejemplo n.º 1
0
 public IHttpActionResult GetallStatus()
 {
     try
     {
         var statusCollection = _workFlowRepository.GetallStatus();
         return(Ok(statusCollection));
     }
     catch (Exception ex)
     {
         _errorLog.LogException(ex);
         throw;
     }
 }