Guest User

Untitled

a guest
Jan 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @Singleton
  2. public class TransactionConverter {
  3.  
  4. @Inject @SystemDate Provider<LocalDate> systemDateProvider;
  5.  
  6. TransactionEntry convertTransaction(Transaction transaction) {
  7. LocalDate systemDate = systemDateProvider.get();
  8. // Convert transaction...
  9. }
  10.  
  11. }
Add Comment
Please, Sign In to add comment