fix springBoot, adding some mapping

This commit is contained in:
2023-04-26 18:13:07 +02:00
parent 1a2d91ae7e
commit 86a3c5006d
7 changed files with 200 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
package ch.progetto152.services;
import ch.progetto152.entity.Location;
import java.util.List;
public class LocationService {
public static List<Location> getLocations() {
return null;
}
public static void createLocation(Location location) {
}
}

View File

@@ -9,7 +9,6 @@ import java.util.List;
@Service
public class UserService {
public List<User> getAllUsers() {
return null;
}

View File

@@ -0,0 +1,11 @@
package ch.progetto152.services;
import ch.progetto152.entity.Waypoints;
import java.util.List;
public class WaypointService {
public static List<Waypoints> getWaypoints() {
return null;
}
}