Exemplo n.º 1
0
        private bool matchAllMembers(string[] arrValues)
        {
            List <AppCategory> list = AppCategory.GetAllWithoutGeneral();

            foreach (AppCategory ac in list)
            {
                if (notInMemberType(ac, arrValues))
                {
                    return(false);
                }
            }
            return(true);
        }