public InstallWebSite(IWebSiteDeployUnit unit)
 {
     if (unit == null)
     {
         throw new ArgumentNullException(nameof(unit));
     }
     _unit = unit;
 }
 public InstallWebSite(IWebSiteDeployUnit unit) => _unit = unit ?? throw new ArgumentNullException(nameof(unit));