Esempio n. 1
0
        public ContentResult ValidRoleCode(string RoleCode)
        {
            bool isValid = sysManageService.ValidRoleCode(RoleCode);

            return(Content(isValid ? "true" : "false", "application/json"));
        }