public void UpdateFeedbackNotes(int Feedbackid, string subject, string notes, int Questionid)
 {
     try
     {
         FeedbackBL feedbackBl = new FeedbackBL();
         feedbackBl.UpdateFeedbackNotes(Feedbackid, subject, notes, Questionid);
     }
     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, "UpdateFeedbackNotes", e.Message, 0);
     }
 }