Skip to content

Instantly share code, notes, and snippets.

@dev-aritra
Created November 16, 2020 11:15
Show Gist options
  • Save dev-aritra/a80c43ce7299f1c91849b415442c5a24 to your computer and use it in GitHub Desktop.
Save dev-aritra/a80c43ce7299f1c91849b415442c5a24 to your computer and use it in GitHub Desktop.
@Repository
public interface StoreRepository extends ReactiveMongoRepository<StoreEntity, String> {
}
@Repository
public interface ZipCodeRepository extends ReactiveMongoRepository<ZipCodeEntity, String> {
Mono<ZipCodeEntity> findByZipCode(String zipCode);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment