private void Initialize()
        {
            var createText = ResourceManager.GetString("Create_Text");

            if (Label == null)
            {
                Label = string.Format("<span class='fa fa-plus-circle' aria-hidden='true'></span> {0}", createText);
            }

            if (Tooltip == null)
            {
                Tooltip = createText;
            }

            Modal = new ViewCreateFormModal();
        }
 /// <summary>
 /// Parameterless constructor
 /// </summary>
 public InsertActionLink()
 {
     Modal = new ViewCreateFormModal();
 }