コード例 #1
0
 public AssetLookupResponse()
 {
     id            = "";
     value         = new AssetIdentifier();
     pricePerShare = 0.0;
 }
コード例 #2
0
 public AssetInput(AssetIdentifier assetIdentifier, int units)
 {
     this.assetIdentifier = assetIdentifier;
     this.units           = units;
 }
コード例 #3
0
 public AssetValidationForm(string id, string assetCode, string symbol, string issue, string issuer)
 {
     this.id    = id;
     this.value = new AssetIdentifier(assetCode, symbol, issue, issuer);
 }
コード例 #4
0
 public AssetInput()
 {
     assetIdentifier = new AssetIdentifier();
     units           = 0;
 }
コード例 #5
0
 public AssetValidationForm()
 {
     id    = "";
     value = new AssetIdentifier();
 }