Add search form for name, phonenumber and account address.

This commit is contained in:
Spencer Ofwiti
2021-04-07 12:24:32 +03:00
parent 4d64a57591
commit 62655a691a
5 changed files with 104 additions and 14 deletions

View File

@@ -176,4 +176,10 @@ export class UserService {
this.accounts = [];
this.accountsList.next(this.accounts);
}
searchAccountByName(name: string): any { return; }
searchAccountByPhone(phoneNumber: string): any { return; }
searchAccountByAddress(address: string): any { return; }
}