/// <summary>
 /// Initializes a new instance of the WebSiteCloneParameters class with
 /// required arguments.
 /// </summary>
 public WebSiteCloneParameters(WebSiteCloneBase webSiteClone)
     : this()
 {
     if (webSiteClone == null)
     {
         throw new ArgumentNullException("webSiteClone");
     }
     this.WebSiteClone = webSiteClone;
 }
 /// <summary>
 /// Initializes a new instance of the WebSiteCloneParameters class with
 /// required arguments.
 /// </summary>
 public WebSiteCloneParameters(WebSiteCloneBase webSiteClone)
     : this()
 {
     if (webSiteClone == null)
     {
         throw new ArgumentNullException("webSiteClone");
     }
     this.WebSiteClone = webSiteClone;
 }