示例#1
0
 public Client(string name, decimal money)
     : base()
 {
     this.name = name;
     this.clientAccount = new Account(money);
 }
示例#2
0
 public Client(string name)
     : base()
 {
     this.name = name;
     this.clientAccount = new Account(0);
 }