Example #1
0
 public MyAccount(MyClient Aclient, string AaccountNumber, string Aid)
 {
     this._client        = Aclient;
     this._accountNumber = AaccountNumber;
     this._id            = Aid;
 }
Example #2
0
 public MyAccount()
 {
     this._client        = new MyClient();;
     this._accountNumber = "-1";
     this._id            = "-1";
 }