public static bool IsInRange(this Location source, double latitude, double longitude, double distance) { return(LocationUtility.IsInRange(source, new Location(latitude, longitude), distance)); }
public static bool IsInRange(this Location source, Location target, double distance) { return(LocationUtility.IsInRange(source, target, distance)); }