/// <summary>
        /// Asynchronously call to get family for person
        /// </summary>
        /// <param name="person"></param>
        public void GetFamilyForPerson(CACCCheckInDb.PeopleWithDepartmentAndClassView person)
        {
            GetFamilyFromServiceDelegate fetcher =
                new GetFamilyFromServiceDelegate(GetFamilyFromService);

            fetcher.BeginInvoke(person, null, null);
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="person"></param>
        public void GetFamilyForPerson(CACCCheckInDb.Person person)
        {
            GetFamilyFromServiceDelegate fetcher =
                new GetFamilyFromServiceDelegate(GetFamilyFromService);

            fetcher.BeginInvoke(person, null, null);
        }