ATUL_v1.ATUL.GetConfigVariablesByScriptName C# (CSharp) Method

GetConfigVariablesByScriptName() private method

private GetConfigVariablesByScriptName ( string ScriptName ) : string
ScriptName string
return string
        public string GetConfigVariablesByScriptName(string ScriptName)
        {
            string d = string.Empty;
            AtulBusinessLogic adb = new AtulBusinessLogic();
            d = adb.ConfigVariablesGetByScriptName(ScriptName);
            return d;
        }
ATUL