private QualifyLeadActionLink(IPortalContext portalContext, int languageCode, QualifyLeadAction action,
                                      bool enabled = true, UrlBuilder url = null, string portalName = null)
            : base(
                portalContext, languageCode, action, LinkActionType.QualifyLead, enabled, url, portalName, DefaultButtonLabel,
                DefaultButtonTooltip)
        {
            Modal = new ViewQualifyLeadModal();

            if (url == null)
            {
                URL = EntityListFunctions.BuildControllerActionUrl("QualifyLead", "EntityAction",
                                                                   new { area = "Portal", __portalScopeId__ = portalContext.Website.Id });
            }
        }
 public QualifyLeadActionLink()
 {
     Modal   = new ViewQualifyLeadModal();
     Enabled = false;
 }