Exemple #1
0
        /// <summary>
        /// Confirms the selected conditions.
        /// </summary>
        private void Confirm()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.AcknowledgeableConditionType_Confirm, comment);
        }
Exemple #2
0
        /// <summary>
        /// Adds a comment to the selected conditions.
        /// </summary>
        private void AddComment()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.ConditionType_AddComment, comment);
        }
Exemple #3
0
        /// <summary>
        /// Confirms the selected conditions.
        /// </summary>
        private void Confirm()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.AcknowledgeableConditionType_Confirm, comment);
        }
Exemple #4
0
        /// <summary>
        /// Adds a comment to the selected conditions.
        /// </summary>
        private void AddComment()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.ConditionType_AddComment, comment);
        }