예제 #1
0
 /// <summary>
 /// Sets a new/updated record list for this account
 /// </summary>
 /// <param name="newList"></param>
 public void setRecList(RecordList newList)
 {
     list = newList;
 }
예제 #2
0
 /// <summary>
 /// Constructor that accepts a username and password to create a new account
 /// </summary>
 /// <param name="user"></param>
 /// <param name="pass"></param>
 public Account(string user, string pass)
 {
     this.username = user;
     this.password = pass;
     list          = new RecordList();
 }