Skip to content

Instantly share code, notes, and snippets.

@oltyx
oltyx / gist:0a833d35ea639ed84fd9e3f5315b48c5
Last active August 17, 2020 09:48
Transaction controller for Digital Payment Assistant API
@RestController
public class TransactionController {
private TransactionRepository transactionRepo;
private CategoryRepository categoryRepo;
private SessionRepository sessionRepo;
private TransactionServiceImpl transactionServ;