Created
September 3, 2018 13:05
-
-
Save Romeh/602b32d756801b68e6580c5f424fbf47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* main customer repository | |
*/ | |
@Repository | |
@Transactional | |
public interface CustomerRepository extends CrudRepository<Customer, Long> { | |
Optional<Customer> findCustomerByName(String name); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment