Ejemplo n.º 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);
        }
Ejemplo n.º 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);
        }
Ejemplo n.º 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);
        }
Ejemplo n.º 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);
        }