1

Add Tests for Repository and add Repository Annotation in EventRepository

This commit is contained in:
XXNitram
2020-03-10 16:43:25 +01:00
parent 05218e8167
commit fba7136d57
2 changed files with 42 additions and 0 deletions

View File

@ -2,6 +2,8 @@ package mops.gruppen2.repository;
import mops.gruppen2.domain.EventDTO;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface EventRepository extends CrudRepository<EventDTO, Long> {
}