Example #1
0
        private void SendAnswerForm_Load(object sender, EventArgs e)
        {
            DaoRecall daoRecall = new DaoRecall();

            recall             = daoRecall.GetRecallOnId(Data.context, Data.intValue);
            recallTextBox.Text = recall.Comment;
        }
Example #2
0
        private void ViewRecallForm_Load(object sender, EventArgs e)
        {
            Recall    recall    = new Recall();
            DaoRecall daoRecall = new DaoRecall();

            recall             = daoRecall.GetRecallOnId(Data.context, Data.intValue);
            topicTextBox.Text  = recall.TopicRecall;
            recallTextBox.Text = recall.Comment;
        }