public function createPayment($instructionId, $amount)
 {
     $payment = parent::createPayment($instructionId, $amount);
     $this->entityManager->persist($payment);
     $this->entityManager->flush();
     return $payment;
 }