public GeoMappingCollection Put(Guid ID)
        {
            var results = new GeoMappingCollection();

            try
            {
                UserAccount user = UserAccount.GetByPrinciple(User);
                if (user != null)
                {
                    GeoMappingCollection.Delete(ID, user.ID);
                }
                else
                {
                    throw new Exception("User Not Authenticated");
                }
            }
            catch (Exception e)
            {
            }

            return(results);
        }