Skip to content
Snippets Groups Projects
Commit ccab009e authored by Oto Stanko's avatar Oto Stanko
Browse files

Merge branch 'milestone_2' of...

Merge branch 'milestone_2' of https://gitlab.fi.muni.cz/xgulcik/pa165-formula-one-team into milestone_2
parents 4ea12946 a448f2c7
No related branches found
No related tags found
2 merge requests!60Docker,!4921 race seasons tests cd
...@@ -13,6 +13,7 @@ import java.util.HashSet; ...@@ -13,6 +13,7 @@ import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/** /**
* Service for manipulation with car's components. * Service for manipulation with car's components.
...@@ -32,6 +33,7 @@ public class CarComponentPairServiceImpl implements CarComponentPairService { ...@@ -32,6 +33,7 @@ public class CarComponentPairServiceImpl implements CarComponentPairService {
} }
@Override @Override
@Transactional
public CarResponseDto addComponent(Long componentId, Long carId) { public CarResponseDto addComponent(Long componentId, Long carId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
...@@ -48,6 +50,7 @@ public class CarComponentPairServiceImpl implements CarComponentPairService { ...@@ -48,6 +50,7 @@ public class CarComponentPairServiceImpl implements CarComponentPairService {
} }
@Override @Override
@Transactional
public CarResponseDto removeComponent(Long componentId, Long carId) { public CarResponseDto removeComponent(Long componentId, Long carId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
...@@ -63,6 +66,7 @@ public class CarComponentPairServiceImpl implements CarComponentPairService { ...@@ -63,6 +66,7 @@ public class CarComponentPairServiceImpl implements CarComponentPairService {
} }
@Override @Override
@Transactional(readOnly = true)
public List<CarComponentResponseDto> getAllComponentsOfCar(Long carId) { public List<CarComponentResponseDto> getAllComponentsOfCar(Long carId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
......
...@@ -13,6 +13,7 @@ import java.util.HashSet; ...@@ -13,6 +13,7 @@ import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/** /**
* Service for Driver Manager. * Service for Driver Manager.
...@@ -32,6 +33,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService { ...@@ -32,6 +33,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService {
} }
@Override @Override
@Transactional
public CarResponseDto assignDriverToCar(Long driverId, Long carId) { public CarResponseDto assignDriverToCar(Long driverId, Long carId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
...@@ -46,6 +48,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService { ...@@ -46,6 +48,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService {
} }
@Override @Override
@Transactional
public CarResponseDto unassignDriverFromCar(Long driverId, Long carId) { public CarResponseDto unassignDriverFromCar(Long driverId, Long carId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
...@@ -61,6 +64,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService { ...@@ -61,6 +64,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService {
} }
@Override @Override
@Transactional(readOnly = true)
public List<DriverDto> getAllDriversOfCar(Long carId) { public List<DriverDto> getAllDriversOfCar(Long carId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
...@@ -77,6 +81,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService { ...@@ -77,6 +81,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService {
} }
@Override @Override
@Transactional
public CarResponseDto setMainDriver(Long carId, Long driverId) { public CarResponseDto setMainDriver(Long carId, Long driverId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
...@@ -92,6 +97,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService { ...@@ -92,6 +97,7 @@ public class CarDriverPairServiceImpl implements CarDriverPairService {
} }
@Override @Override
@Transactional
public CarResponseDto removeMainDriver(Long carId) { public CarResponseDto removeMainDriver(Long carId) {
var car = carRepository.findById(carId).orElseThrow( var car = carRepository.findById(carId).orElseThrow(
() -> new DatabaseException("Car not found")); () -> new DatabaseException("Car not found"));
......
...@@ -13,6 +13,7 @@ import cz.muni.pa165.common_library.exception.DatabaseException; ...@@ -13,6 +13,7 @@ import cz.muni.pa165.common_library.exception.DatabaseException;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/** /**
...@@ -33,6 +34,7 @@ public class CarServiceImpl implements CarService { ...@@ -33,6 +34,7 @@ public class CarServiceImpl implements CarService {
} }
@Override @Override
@Transactional
public CarResponseDto postCar(CarRequestDto carRequestDto) { public CarResponseDto postCar(CarRequestDto carRequestDto) {
var componentIds = carRequestDto.getComponentIds(); var componentIds = carRequestDto.getComponentIds();
...@@ -46,6 +48,7 @@ public class CarServiceImpl implements CarService { ...@@ -46,6 +48,7 @@ public class CarServiceImpl implements CarService {
} }
@Override @Override
@Transactional(readOnly = true)
public CarResponseDto getCarById(Long carId) { public CarResponseDto getCarById(Long carId) {
return carConverterToDto(carRepository.findById(carId).orElseThrow( return carConverterToDto(carRepository.findById(carId).orElseThrow(
() -> new DatabaseException( () -> new DatabaseException(
...@@ -55,6 +58,7 @@ public class CarServiceImpl implements CarService { ...@@ -55,6 +58,7 @@ public class CarServiceImpl implements CarService {
} }
@Override @Override
@Transactional(readOnly = true)
public List<CarResponseDto> getAllCars() { public List<CarResponseDto> getAllCars() {
return carRepository return carRepository
.findAll() .findAll()
...@@ -64,6 +68,7 @@ public class CarServiceImpl implements CarService { ...@@ -64,6 +68,7 @@ public class CarServiceImpl implements CarService {
} }
@Override @Override
@Transactional
public String deleteById(Long carId) { public String deleteById(Long carId) {
carRepository.deleteById(carId); carRepository.deleteById(carId);
return "Car with id = " + carId + " deleted!"; return "Car with id = " + carId + " deleted!";
......
...@@ -8,6 +8,7 @@ import cz.muni.pa165.component.data.repository.ComponentRepositoryInterface; ...@@ -8,6 +8,7 @@ import cz.muni.pa165.component.data.repository.ComponentRepositoryInterface;
import java.util.List; import java.util.List;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/** /**
...@@ -34,6 +35,7 @@ public class ComponentService implements ComponentServiceInterface { ...@@ -34,6 +35,7 @@ public class ComponentService implements ComponentServiceInterface {
* @param carComponentId id of the component. * @param carComponentId id of the component.
* @return found car component. * @return found car component.
*/ */
@Transactional(readOnly = true)
public CarComponentResponseDto getCarComponentById(Long carComponentId) { public CarComponentResponseDto getCarComponentById(Long carComponentId) {
return carComponentConverter(componentRepository.findById(carComponentId).orElseThrow( return carComponentConverter(componentRepository.findById(carComponentId).orElseThrow(
() -> new DatabaseException("Something went wrong when finding car component with id: " () -> new DatabaseException("Something went wrong when finding car component with id: "
...@@ -45,6 +47,7 @@ public class ComponentService implements ComponentServiceInterface { ...@@ -45,6 +47,7 @@ public class ComponentService implements ComponentServiceInterface {
* *
* @return list of stored car components. * @return list of stored car components.
*/ */
@Transactional(readOnly = true)
public List<CarComponentResponseDto> getAllCarComponents() { public List<CarComponentResponseDto> getAllCarComponents() {
return componentRepository.findAll() return componentRepository.findAll()
.stream() .stream()
...@@ -57,6 +60,7 @@ public class ComponentService implements ComponentServiceInterface { ...@@ -57,6 +60,7 @@ public class ComponentService implements ComponentServiceInterface {
* *
* @param carComponentId of the car component for removal. * @param carComponentId of the car component for removal.
*/ */
@Transactional
public String deleteById(Long carComponentId) { public String deleteById(Long carComponentId) {
componentRepository.deleteById(carComponentId); componentRepository.deleteById(carComponentId);
return "Car component with id: " + carComponentId + "was successfully deleted"; return "Car component with id: " + carComponentId + "was successfully deleted";
......
...@@ -12,6 +12,7 @@ import java.util.List; ...@@ -12,6 +12,7 @@ import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/** /**
* Implementation of driver service. * Implementation of driver service.
...@@ -34,6 +35,7 @@ public class DriverServiceImpl implements DriverService { ...@@ -34,6 +35,7 @@ public class DriverServiceImpl implements DriverService {
* @param driverAddDto driver dto object * @param driverAddDto driver dto object
* @return dto of added driver * @return dto of added driver
*/ */
@Transactional
public DriverResponseDto addDriver(DriverAddDto driverAddDto) { public DriverResponseDto addDriver(DriverAddDto driverAddDto) {
var driver = driverMapper.convertToDriver(driverAddDto); var driver = driverMapper.convertToDriver(driverAddDto);
return driverMapper.convertToResponseDto(driverRepository.save(driver)); return driverMapper.convertToResponseDto(driverRepository.save(driver));
...@@ -46,6 +48,7 @@ public class DriverServiceImpl implements DriverService { ...@@ -46,6 +48,7 @@ public class DriverServiceImpl implements DriverService {
* @param driverUpdateDto data to be updated * @param driverUpdateDto data to be updated
* @return dto of updated driver * @return dto of updated driver
*/ */
@Transactional
public DriverResponseDto updateDriverById(Long id, DriverUpdateDto driverUpdateDto) { public DriverResponseDto updateDriverById(Long id, DriverUpdateDto driverUpdateDto) {
var driver = driverRepository.findById(id) var driver = driverRepository.findById(id)
.orElseThrow(() -> new ResourceNotFoundException("Driver with given id not found.")); .orElseThrow(() -> new ResourceNotFoundException("Driver with given id not found."));
...@@ -59,6 +62,7 @@ public class DriverServiceImpl implements DriverService { ...@@ -59,6 +62,7 @@ public class DriverServiceImpl implements DriverService {
* @param driver existing driver * @param driver existing driver
* @param driverUpdateDto driver update dto * @param driverUpdateDto driver update dto
*/ */
@Transactional
private static void updateDriverAttributes(Driver driver, DriverUpdateDto driverUpdateDto) { private static void updateDriverAttributes(Driver driver, DriverUpdateDto driverUpdateDto) {
if (driverUpdateDto.name() != null) { if (driverUpdateDto.name() != null) {
driver.setName(driverUpdateDto.name()); driver.setName(driverUpdateDto.name());
...@@ -80,6 +84,7 @@ public class DriverServiceImpl implements DriverService { ...@@ -80,6 +84,7 @@ public class DriverServiceImpl implements DriverService {
* @param id driver id * @param id driver id
* @return dto of removed driver * @return dto of removed driver
*/ */
@Transactional
public DriverResponseDto removeDriverById(Long id) { public DriverResponseDto removeDriverById(Long id) {
var found = driverRepository.findById(id) var found = driverRepository.findById(id)
.orElseThrow(() -> new ResourceNotFoundException( .orElseThrow(() -> new ResourceNotFoundException(
...@@ -93,6 +98,7 @@ public class DriverServiceImpl implements DriverService { ...@@ -93,6 +98,7 @@ public class DriverServiceImpl implements DriverService {
* *
* @return all stored drivers dto list * @return all stored drivers dto list
*/ */
@Transactional(readOnly = true)
public List<DriverInsightDto> getAllDrivers() { public List<DriverInsightDto> getAllDrivers() {
System.out.println(); System.out.println();
return driverRepository.findAll() return driverRepository.findAll()
...@@ -107,6 +113,7 @@ public class DriverServiceImpl implements DriverService { ...@@ -107,6 +113,7 @@ public class DriverServiceImpl implements DriverService {
* @param id driver id * @param id driver id
* @return found driver dto if successful * @return found driver dto if successful
*/ */
@Transactional(readOnly = true)
public DriverInsightDto getDriverById(Long id) { public DriverInsightDto getDriverById(Long id) {
return driverMapper.convertToInsightDto(driverRepository.findById(id) return driverMapper.convertToInsightDto(driverRepository.findById(id)
.orElseThrow(() -> new ResourceNotFoundException( .orElseThrow(() -> new ResourceNotFoundException(
......
...@@ -88,7 +88,7 @@ public class RaceController { ...@@ -88,7 +88,7 @@ public class RaceController {
return ResponseEntity.ok(raceService.assignPositionForDriverTwo(raceId, position)); return ResponseEntity.ok(raceService.assignPositionForDriverTwo(raceId, position));
} }
@Operation(summary = "Assign position for driver two") @Operation(summary = "Assign position for driver one")
@PatchMapping(path = "/assignPointsDriverOne", @PatchMapping(path = "/assignPointsDriverOne",
produces = MediaType.APPLICATION_JSON_VALUE) produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<RaceDto> assignPositionDriverOne(@RequestParam Long raceId, public ResponseEntity<RaceDto> assignPositionDriverOne(@RequestParam Long raceId,
......
...@@ -18,6 +18,7 @@ import java.util.Objects; ...@@ -18,6 +18,7 @@ import java.util.Objects;
import java.util.Set; import java.util.Set;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.client.RestTemplate; import org.springframework.web.client.RestTemplate;
/** /**
...@@ -44,6 +45,7 @@ public class RaceService implements RaceServiceI { ...@@ -44,6 +45,7 @@ public class RaceService implements RaceServiceI {
* @param raceDto race to insert. * @param raceDto race to insert.
* @return inserted race. * @return inserted race.
*/ */
@Transactional
public RaceDto postRace(RaceDto raceDto) { public RaceDto postRace(RaceDto raceDto) {
raceDto.setId(null); raceDto.setId(null);
return convertRace(raceRepository.save(convertRaceDto(raceDto))); return convertRace(raceRepository.save(convertRaceDto(raceDto)));
...@@ -54,6 +56,7 @@ public class RaceService implements RaceServiceI { ...@@ -54,6 +56,7 @@ public class RaceService implements RaceServiceI {
* *
* @param raceId race id * @param raceId race id
*/ */
@Transactional
public String deleteRace(Long raceId) { public String deleteRace(Long raceId) {
raceRepository.deleteById(raceId); raceRepository.deleteById(raceId);
return "Race with id: " + raceId + "was succesfully deleted"; return "Race with id: " + raceId + "was succesfully deleted";
...@@ -62,6 +65,7 @@ public class RaceService implements RaceServiceI { ...@@ -62,6 +65,7 @@ public class RaceService implements RaceServiceI {
/** /**
* Assigns driver one. * Assigns driver one.
*/ */
@Transactional
public RaceDto assignDriverOne(Long driverId, Long raceId, Long carId) { public RaceDto assignDriverOne(Long driverId, Long raceId, Long carId) {
var race = raceRepository.findById(raceId) var race = raceRepository.findById(raceId)
.orElseThrow(() -> new DatabaseException("Race not found")); .orElseThrow(() -> new DatabaseException("Race not found"));
...@@ -83,6 +87,7 @@ public class RaceService implements RaceServiceI { ...@@ -83,6 +87,7 @@ public class RaceService implements RaceServiceI {
/** /**
* Assigns driver two. * Assigns driver two.
*/ */
@Transactional
public RaceDto assignDriverTwo(Long driverId, Long raceId, Long carId) { public RaceDto assignDriverTwo(Long driverId, Long raceId, Long carId) {
var race = raceRepository.findById(raceId) var race = raceRepository.findById(raceId)
.orElseThrow(() -> new DatabaseException("Race not found")); .orElseThrow(() -> new DatabaseException("Race not found"));
...@@ -108,6 +113,7 @@ public class RaceService implements RaceServiceI { ...@@ -108,6 +113,7 @@ public class RaceService implements RaceServiceI {
* @param raceId id of race. * @param raceId id of race.
* @return found race. * @return found race.
*/ */
@Transactional(readOnly = true)
public RaceDto findRaceById(Long raceId) { public RaceDto findRaceById(Long raceId) {
return convertRace(raceRepository.findById(raceId).orElseThrow( return convertRace(raceRepository.findById(raceId).orElseThrow(
() -> new DatabaseException("Something went wrong when" () -> new DatabaseException("Something went wrong when"
...@@ -119,6 +125,7 @@ public class RaceService implements RaceServiceI { ...@@ -119,6 +125,7 @@ public class RaceService implements RaceServiceI {
* *
* @return found races. * @return found races.
*/ */
@Transactional(readOnly = true)
public List<RaceDto> findRaces() { public List<RaceDto> findRaces() {
return raceRepository.findAll().stream().map(this::convertRace).toList(); return raceRepository.findAll().stream().map(this::convertRace).toList();
} }
...@@ -130,6 +137,7 @@ public class RaceService implements RaceServiceI { ...@@ -130,6 +137,7 @@ public class RaceService implements RaceServiceI {
* @param position position of driver two. * @param position position of driver two.
* @return updated race. * @return updated race.
*/ */
@Transactional
public RaceDto assignPositionForDriverTwo(Long raceId, Integer position) { public RaceDto assignPositionForDriverTwo(Long raceId, Integer position) {
var race = var race =
raceRepository.findById(raceId).orElseThrow(() -> new DatabaseException("Race not found")); raceRepository.findById(raceId).orElseThrow(() -> new DatabaseException("Race not found"));
...@@ -144,10 +152,11 @@ public class RaceService implements RaceServiceI { ...@@ -144,10 +152,11 @@ public class RaceService implements RaceServiceI {
* @param position position of driver one. * @param position position of driver one.
* @return updated race. * @return updated race.
*/ */
@Transactional
public RaceDto assignPositionForDriverOne(Long raceId, Integer position) { public RaceDto assignPositionForDriverOne(Long raceId, Integer position) {
var race = var race =
raceRepository.findById(raceId).orElseThrow(() -> new DatabaseException("Race not found")); raceRepository.findById(raceId).orElseThrow(() -> new DatabaseException("Race not found"));
race.getDriver2().setFinalPosition(position); race.getDriver1().setFinalPosition(position);
return convertRace(raceRepository.save(race)); return convertRace(raceRepository.save(race));
} }
...@@ -157,6 +166,7 @@ public class RaceService implements RaceServiceI { ...@@ -157,6 +166,7 @@ public class RaceService implements RaceServiceI {
* @param location location of the race. * @param location location of the race.
* @return set if ids of most suitable drivers for given location. * @return set if ids of most suitable drivers for given location.
*/ */
@Transactional(readOnly = true)
public Set<Long> findMostSuitableDriver(Location location) { public Set<Long> findMostSuitableDriver(Location location) {
var races = raceRepository.findRacesByLocation(location); var races = raceRepository.findRacesByLocation(location);
Map<Long, Integer> driverWithPoints = new HashMap<>(); Map<Long, Integer> driverWithPoints = new HashMap<>();
......
...@@ -10,6 +10,7 @@ import cz.muni.pa165.race.data.repository.SeasonRepository; ...@@ -10,6 +10,7 @@ import cz.muni.pa165.race.data.repository.SeasonRepository;
import java.util.List; import java.util.List;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/** /**
* Season service. * Season service.
...@@ -33,6 +34,7 @@ public class SeasonService implements SeasonServiceI { ...@@ -33,6 +34,7 @@ public class SeasonService implements SeasonServiceI {
* @param seasonDto season to insert. * @param seasonDto season to insert.
* @return inserted season. * @return inserted season.
*/ */
@Transactional
public SeasonDto postSeason(SeasonDto seasonDto) { public SeasonDto postSeason(SeasonDto seasonDto) {
seasonDto.setId(null); seasonDto.setId(null);
return seasonConverter(seasonRepository.save(seasonDtoConverter(seasonDto))); return seasonConverter(seasonRepository.save(seasonDtoConverter(seasonDto)));
...@@ -44,6 +46,7 @@ public class SeasonService implements SeasonServiceI { ...@@ -44,6 +46,7 @@ public class SeasonService implements SeasonServiceI {
* @param seasonId season id. * @param seasonId season id.
* @return found season. * @return found season.
*/ */
@Transactional(readOnly = true)
public SeasonDto getSeasonById(Long seasonId) { public SeasonDto getSeasonById(Long seasonId) {
return seasonConverter(seasonRepository.findById(seasonId).orElseThrow( return seasonConverter(seasonRepository.findById(seasonId).orElseThrow(
() -> new DatabaseException("Something went wrong when" () -> new DatabaseException("Something went wrong when"
...@@ -55,6 +58,7 @@ public class SeasonService implements SeasonServiceI { ...@@ -55,6 +58,7 @@ public class SeasonService implements SeasonServiceI {
* *
* @return found seasons. * @return found seasons.
*/ */
@Transactional(readOnly = true)
public List<SeasonDto> getAllSeasons() { public List<SeasonDto> getAllSeasons() {
return seasonRepository.findAll() return seasonRepository.findAll()
.stream() .stream()
...@@ -68,6 +72,7 @@ public class SeasonService implements SeasonServiceI { ...@@ -68,6 +72,7 @@ public class SeasonService implements SeasonServiceI {
* @param seasonId season id. * @param seasonId season id.
* @return found season. * @return found season.
*/ */
@Transactional
public String deleteById(Long seasonId) { public String deleteById(Long seasonId) {
seasonRepository.deleteById(seasonId); seasonRepository.deleteById(seasonId);
return "Season with id: " + seasonId + "was succesfully deleted"; return "Season with id: " + seasonId + "was succesfully deleted";
...@@ -80,6 +85,7 @@ public class SeasonService implements SeasonServiceI { ...@@ -80,6 +85,7 @@ public class SeasonService implements SeasonServiceI {
* @param seasonId season id. * @param seasonId season id.
* @return modified race. * @return modified race.
*/ */
@Transactional(readOnly = true)
public SeasonDto addRace(Long raceId, Long seasonId) { public SeasonDto addRace(Long raceId, Long seasonId) {
var season = seasonRepository.findById(seasonId) var season = seasonRepository.findById(seasonId)
.orElseThrow(() -> new DatabaseException("Season not found")); .orElseThrow(() -> new DatabaseException("Season not found"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment