コード例 #1
0
        public List <UserFeedback> GetTeamReportDumb(int feedbacktype, int poeid)
        {
            try
            {
                FeedbackBL feedbackBl = new FeedbackBL();

                return(feedbackBl.GetTeamMberDumb(feedbacktype, 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(0, "GetTeamReportDumb", e.Message, 0);
            }
            return(null);
        }