Skip to content
Snippets Groups Projects
Commit 53391a10 authored by Martin Slovík's avatar Martin Slovík
Browse files

Adding AirplaneRepository

parent ef6bef35
No related branches found
No related tags found
No related merge requests found
package cz.muni.fi.pa165.core.data.repository.airplane;
import cz.muni.fi.pa165.core.data.domain.Airplane;
import cz.muni.fi.pa165.core.data.repository.common.BaseRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface AirplaneRepository extends BaseRepository<Airplane, Long> {
}
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