Esempio n. 1
0
 public List <UserPOEMapping> GetFeedbackHistory(int userId, int subscriptionid, int poeId)
 {
     try
     {
         FeedbackBL feedbackBl = new FeedbackBL();
         return(feedbackBl.GetFeedbackHistory(userId, subscriptionid, poeId));
     }
     catch (Exception e)
     {
         WebOperationContext.Current.OutgoingResponse.StatusCode        = HttpStatusCode.PreconditionFailed;
         WebOperationContext.Current.OutgoingResponse.StatusDescription = e.Message;
         BusinessLogic.Common.Common common = new BusinessLogic.Common.Common();
         common.CreateErrorLog(userId, "GetFeedbackHistory", e.Message, 0);
     }
     return(null);
 }