예제 #1
0
        // TODO: return a more complex type
        public bool RemoveLocation(decimal longitude, decimal latitude)
        {
            var location = new Location.Location(Settings);

            location.Remove(longitude, latitude);

            return(true);
        }