The service allows to perform CRUD operations on a set of payment documents.
PaymentDocument entity:
- id (int, autogenerated)
- purpose (string, not required, 255 symbols max)
- amount (int)
- source account (string, 10 symbols)
- destination account (string, 10 symbols)
CRUD operations:
- getPaymentDocumentById
- addPaymentDocument
- deletePaymentDocument
- getAllPaymentDocuments
P.S. No database was used.