Пример #1
0
 private void ShowInfo(int replyID)
 {
     UFB.BLL.ReplyManager bll   = new UFB.BLL.ReplyManager();
     UFB.Model.Reply      model = bll.GetModel(replyID);
     this.lblreplyID.Text    = model.replyID.ToString();
     this.lblfeedbackID.Text = model.feedbackID.ToString();
     this.lblreplier.Text    = model.replier;
     this.lblreplyText.Text  = model.replyText;
     this.lblreplyTime.Text  = model.replyTime.ToString();
     this.lblnumber.Text     = model.number.ToString();
     this.lblisRead.Text     = model.isRead;
 }