Beispiel #1
0
        private void AdminSetup() {
            var acc0 = new AdminAccount(0, "admin-pete-w", "password", "Pete Wilkinson", false);

            AccountList accList = new AccountList(true);
            accList.AddAdminAccount(acc0);
            accList.SaveAdminData();
        }
Beispiel #2
0
 public void AddAdminAccount(AdminAccount x)
 {
     _listOfAdminAccounts.Add(x);
 }