Esempio n. 1
0
        public Task <GetPoOutputDTO> GetPoQueryAsync(BigInteger poNumber, BlockParameter blockParameter = null)
        {
            var getPoFunction = new GetPoFunction();

            getPoFunction.PoNumber = poNumber;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetPoFunction, GetPoOutputDTO>(getPoFunction, blockParameter));
        }
Esempio n. 2
0
 public Task <GetPoOutputDTO> GetPoQueryAsync(GetPoFunction getPoFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetPoFunction, GetPoOutputDTO>(getPoFunction, blockParameter));
 }