/// <summary>
        /// Returns the list of Pet Owners and their pets
        /// </summary>
        /// <returns></returns>
        public List <T> GetPetOwners()
        {
            string url = @"http://agl-developer-test.azurewebsites.net/people.json";

            return(_httpHelper.GetContentFromURL(url));
        }