コード例 #1
0
        public Task <string> GetVendorAddressQueryAsync(BigInteger gUID, BlockParameter blockParameter = null)
        {
            var getVendorAddressFunction = new GetVendorAddressFunction();

            getVendorAddressFunction.GUID = gUID;

            return(ContractHandler.QueryAsync <GetVendorAddressFunction, string>(getVendorAddressFunction, blockParameter));
        }
コード例 #2
0
 public Task <string> GetVendorAddressQueryAsync(GetVendorAddressFunction getVendorAddressFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetVendorAddressFunction, string>(getVendorAddressFunction, blockParameter));
 }