WithdrawalRepositoryInterface
in
Interface WithdrawalRepositoryInterface
Tags
Table of Contents
- delete() : $this|WithdrawalRepositoryInterface
- Deletes withdrawal entity from database
- store() : $this|WithdrawalRepositoryInterface
- Saves withdrawal entity in database.
Methods
delete()
Deletes withdrawal entity from database
public
delete(WithdrawalInterface $withdrawal) : $this|WithdrawalRepositoryInterface
Parameters
- $withdrawal : WithdrawalInterface
-
Withdrawal entity to be deleted.
Return values
$this|WithdrawalRepositoryInterface —Same instance for chained method calls.
store()
Saves withdrawal entity in database.
public
store(WithdrawalInterface $withdrawal) : $this|WithdrawalRepositoryInterface
Parameters
- $withdrawal : WithdrawalInterface
-
Withdrawal entity to be saved.
Return values
$this|WithdrawalRepositoryInterface —Same instance for chained method calls.