Skip to content

Instantly share code, notes, and snippets.

@jaocamp
Last active August 23, 2018 03:39
Show Gist options
  • Save jaocamp/fd9fae0d6a0e8ec6920f3409da43cd22 to your computer and use it in GitHub Desktop.
Save jaocamp/fd9fae0d6a0e8ec6920f3409da43cd22 to your computer and use it in GitHub Desktop.
CQRS e Event Sourcing com Axon Framework e Spring Boot - BankAccountRepository.java
package br.com.coderef.repository;
import br.com.coderef.model.BankAccount;
import org.springframework.data.repository.CrudRepository;
public interface BankAccountRepository extends CrudRepository<BankAccount, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment