예제 #1
0
 protected virtual void OnQuestionnareConfirm(QuestionnareConfirmEventArgs e)
 {
     if (QuestionnareConfirm != null)
     {
         QuestionnareConfirm(this, e);
     }
 }
예제 #2
0
        private QuestionnareConfirmEventArgs OnQuestionnareConfirmForOut()
        {
            QuestionnareConfirmEventArgs args = new QuestionnareConfirmEventArgs();

            OnQuestionnareConfirm(args);

            return(args);
        }
예제 #3
0
        private QuestionnareConfirmEventArgs OnQuestionnareConfirm(List <Response> responses)
        {
            QuestionnareConfirmEventArgs args = new QuestionnareConfirmEventArgs(responses);

            OnQuestionnareConfirm(args);

            return(args);
        }