示例#1
0
        /// <summary>
        /// Enters the name of the company.
        /// </summary>
        /// <param name="companyName">Name of the company.</param>
        /// <returns></returns>
        public virtual _CreateOrUpdateInfoComponent EnterCompanyName(
            string companyName)
        {
            CompanyNameElement.SetValue(companyName);

            return(this);
        }
示例#2
0
 /// <summary>
 /// Gets the name of the company.
 /// </summary>
 /// <returns></returns>
 public virtual string GetCompanyName()
 {
     return(CompanyNameElement.GetValue <string>());
 }
        /// <summary>
        /// Sets the name of the company.
        /// </summary>
        /// <param name="companyName">Name of the company.</param>
        /// <returns></returns>
        public virtual IInfoPage SetCompanyName(string companyName)
        {
            CompanyNameElement.SetValue(companyName);

            return(this);
        }