/// <summary>
 /// Initializes a new instance of the <see cref="VisitorTagSetter"/> class.
 /// </summary>
 /// <param name="helper">
 /// The helper.
 /// </param>
 public VisitorTagSetter(Helper helper)
 {
     this.helper = helper;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ControlManager"/> class.
 /// </summary>
 /// <param name="helper">
 /// The helper.
 /// </param>
 public ControlManager(Helper helper)
 {
     this.LoginLogoutControl = new LoginLogoutControl(helper);
       this.VisitorTagSetter = new VisitorTagSetter(helper);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LoginLogoutControl"/> class.
 /// </summary>
 /// <param name="helper">
 /// The helper.
 /// </param>
 public LoginLogoutControl(Helper helper)
 {
     this.helper = helper;
 }