示例#1
0
        // This calls the accessor method that updates a person group as approved.
        public bool EditPersonGroupAsApproved(int personID, string groupID)
        {
            bool result = false;

            try
            {
                result = (1 == _groupAccessor.UpdatePersonGroupAsApproved(personID, groupID));
            }
            catch (Exception ex)
            {
                throw new ApplicationException("Person Group not Edited.", ex);
            }
            return(result);
        }