Exemple #1
0
        public Task <bool> CheckDuplicateRequestQueryAsync(string doc, BlockParameter blockParameter = null)
        {
            var checkDuplicateRequestFunction = new CheckDuplicateRequestFunction();

            checkDuplicateRequestFunction.Doc = doc;
            return(ContractHandler.QueryAsync <CheckDuplicateRequestFunction, bool>(checkDuplicateRequestFunction, blockParameter));
        }
Exemple #2
0
 public Task <bool> CheckDuplicateRequestQueryAsync(CheckDuplicateRequestFunction checkDuplicateRequestFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <CheckDuplicateRequestFunction, bool>(checkDuplicateRequestFunction, blockParameter));
 }