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

Implementing AirplaneTypeRepository

parent fd2895eb
No related branches found
No related tags found
No related merge requests found
package cz.muni.fi.pa165.core.data.repository.airplanetype;
import cz.muni.fi.pa165.core.data.domain.AirplaneType;
import cz.muni.fi.pa165.core.data.repository.common.BaseRepository;
import org.springframework.stereotype.Repository;
import java.util.Optional;
@Repository
public interface AirplaneTypeRepository extends BaseRepository<AirplaneType, Long> {
Optional<AirplaneType> findByName(String name);
}
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