public string Execute(ICoreManager coreManager)
        {
            var ifCoreExists = coreManager.RemoveCore(this.coreName);

            if (ifCoreExists)
            {
                return(string.Format(SuccessfullMessage, this.coreName));
            }

            return(string.Format(FailureMessage, this.coreName));
        }