Exemplo n.º 1
0
 public Account(Address address, long current, IEnumerable <AccountBalance> balances, TxAddressDeclaration declaration = null) : this(address, current)
 {
     Declaration = declaration;
     SetBalances(balances);
 }
Exemplo n.º 2
0
 public MutableAccount SetDeclaration(TxAddressDeclaration declaration)
 {
     Declaration = declaration;
     return(this);
 }