Esempio n. 1
0
 public Account(string owner)
 {
     this.Owner = owner;
     State      = new SilverState(0.00, this);
 }
Esempio n. 2
0
 public Account(string owner)
 {
     State = new SilverState(0, this);
     Owner = owner;
 }