public Task <BigInteger> GetAssembledTimeStampQueryAsync(BigInteger gUID, BlockParameter blockParameter = null)
        {
            var getAssembledTimeStampFunction = new GetAssembledTimeStampFunction();

            getAssembledTimeStampFunction.GUID = gUID;

            return(ContractHandler.QueryAsync <GetAssembledTimeStampFunction, BigInteger>(getAssembledTimeStampFunction, blockParameter));
        }
 public Task <BigInteger> GetAssembledTimeStampQueryAsync(GetAssembledTimeStampFunction getAssembledTimeStampFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetAssembledTimeStampFunction, BigInteger>(getAssembledTimeStampFunction, blockParameter));
 }