/// <summary> /// Sets a new/updated record list for this account /// </summary> /// <param name="newList"></param> public void setRecList(RecordList newList) { list = newList; }
/// <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(); }