Example #1
0
 public string SaveSecurityGroup(string operation, GroupOperation parameter)
 {
     try
     {
         string result = ValueData.GeneralValue <string>("SecurityManage", "ManageGroupMember", parameter);
         return(result);
     }
     catch (Exception ex)
     {
         var em = ex.Message;
         return("Failed");
     }
 }
Example #2
0
 public string SaveSecurityRoleMatch(string operation, AppRoleMatchOperation parameter)
 {
     try
     {
         string result = ValueData.GeneralValue <string>("SecurityManage", "UserRoleMatchManagementOperation", parameter);
         return(result);
     }
     catch (Exception ex)
     {
         var em = ex.Message;
         return("Failed");
     }
 }
Example #3
0
        public string GetHelpContentByHelpPara(string operation, HelpMessage parameter)
        {
            try
            {
                //  string sp = "dbo.SIC_sys_HelpContent";

                return(ValueData.GeneralValue <string>("AppsPageHelp", "HelpContent", parameter));
            }
            catch (Exception ex)
            {
                var em = ex.Message;
                return("");
            }
        }