Skip to content

Instantly share code, notes, and snippets.

@0001vrn
Last active April 11, 2020 11:20
Show Gist options
  • Save 0001vrn/8730f274e6a88e08634b269b9be25dfd to your computer and use it in GitHub Desktop.
Save 0001vrn/8730f274e6a88e08634b269b9be25dfd to your computer and use it in GitHub Desktop.
public interface ChgRequestRepository {
List<ChgRequest> findAll();
Optional<ChgRequest> findById(UUID id);
void save(ChgRequest chgRequest);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment