Example #1
0
        /// <summary>
        /// Enters the admin comment.
        /// </summary>
        /// <param name="comment">The comment.</param>
        /// <returns></returns>
        public virtual _CreateOrUpdateInfoComponent EnterAdminComment(string comment)
        {
            AdminCommentElement.SetValue(comment);

            return(this);
        }
Example #2
0
 /// <summary>
 /// Gets the admin comment.
 /// </summary>
 /// <returns></returns>
 public virtual string GetAdminComment()
 {
     return(AdminCommentElement.GetValue <string>());
 }
        /// <summary>
        /// Sets the admin comment.
        /// </summary>
        /// <param name="adminComment">The admin comment.</param>
        /// <returns></returns>
        public virtual GeneralInformationComponent SetAdminComment(string adminComment)
        {
            AdminCommentElement.SetValue(adminComment);

            return(this);
        }