Esempio n. 1
0
 public IHttpActionResult GetAllBoolenOperatorListByActivityId(int activityId)
 {
     try
     {
         var boolenCustomAttributeCollection = _workFlowRepository.GetAllBoolenOperatorListByActivityId(activityId);
         return(Ok(boolenCustomAttributeCollection));
     }
     catch (Exception ex)
     {
         _errorLog.LogException(ex);
         throw;
     }
 }