Created
          September 25, 2021 19:35 
        
      - 
      
 - 
        
Save alex-ber/9485bfda510861c1342bdcb0460ad414 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
    
  
  
    
  | package com.mkyong.dao; | |
| import com.mkyong.model.Customer; | |
| import java.util.List; | |
| public class CustomerRepositoryImpl implements CustomerRepositoryCustomAbc { | |
| @Override | |
| public List<Customer> findByAVeryComplicatedQuery(Long id, String name, String address) { | |
| //... | |
| } | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment