Skip to content
Snippets Groups Projects

Resolve "As a user I would like to see a map of the landmarks, so that I can figure out where to go"

8 files
+ 591
447
Compare changes
  • Side-by-side
  • Inline
Files
8
package Team5.SmartTowns.data;
import java.util.List;
public interface LocationsCoordinatesRepository {
List<LocationsCoordinates> getAllLocationCoords();
void addLocationCoord(LocationsCoordinates locCoord);
}
Loading