Esempio n. 1
0
 public void DeleteAccount(int id)
 {
     Accounts.RemoveAll(x => x.AccountID == id);
     AccountsCountChanged?.Invoke();
 }
Esempio n. 2
0
 public void AddAccount(Account acc)
 {
     Accounts.Add(acc);
     AccountsCountChanged?.Invoke();
 }