示例#1
0
        // This calls the accessor method that selects a list of unapproved person groups by personID.
        public List <string> RetriveUnapprovedPersonGroups(int personID)
        {
            List <string> groups = null;

            try
            {
                groups = _groupAccessor.SelectUnapprovedPersonGroups(personID);
            }
            catch (Exception ex)
            {
                throw new ApplicationException("Group not found!", ex);
            }
            return(groups);
        }