CAESDO.Recruitment.CatbertManager.RemoveUserFromRole C# (CSharp) Method

RemoveUserFromRole() public static method

public static RemoveUserFromRole ( int roleID, string login ) : bool
roleID int
login string
return bool
        public static bool RemoveUserFromRole(int roleID, string login)
        {
            SetSecurityContext();

            return catops.DeletePermissions(login, AppName, roleID, HASH);
        }