Skip to content

Commit

Permalink
Add 1 comment for addTransaction in Model
Browse files Browse the repository at this point in the history
  • Loading branch information
joloong committed Oct 13, 2019
1 parent 6c2d84a commit 9f2d76e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/seedu/address/model/Model.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,9 @@ public interface Model {
*/
void updateFilteredPersonList(Predicate<Person> predicate);

/**
* Adds the given transaction.
* {@code transaction} must not already exist in the bank account.
*/
void addTransaction(Transaction transaction);
}

0 comments on commit 9f2d76e

Please sign in to comment.