/// <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); }
/// <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); }