Skip to content

Instantly share code, notes, and snippets.

@ehsaniara
Last active December 31, 2019 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehsaniara/df95f7f6ce74e4af03e9c1682ac712af to your computer and use it in GitHub Desktop.
Save ehsaniara/df95f7f6ce74e4af03e9c1682ac712af to your computer and use it in GitHub Desktop.
package com.ehsaniara.multidatasource.repository.readRepository;
import com.ehsaniara.multidatasource.model.Customer;
import org.springframework.data.repository.CrudRepository;
/**
* @author Jay Ehsaniara, Dec 30 2019
*/
public interface CustomerReadRepository extends CrudRepository<Customer, Long> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment