1

add Saving Events in DB

This commit is contained in:
killerber4t
2020-03-09 14:25:00 +01:00
parent 2da89300e3
commit aa80a3b5df
4 changed files with 29 additions and 9 deletions

View File

@ -1,7 +1,8 @@
package mops.gruppen2.repository;
import mops.gruppen2.domain.EventDTO;
import mops.gruppen2.domain.event.Event;
import org.springframework.data.repository.CrudRepository;
public interface EventRepository extends CrudRepository<Event, Long> {
public interface EventRepository extends CrudRepository<EventDTO, Long> {
}