public Task <bool> IsCapperQueryAsync(string account, BlockParameter blockParameter = null)
        {
            var isCapperFunction = new IsCapperFunction();

            isCapperFunction.Account = account;

            return(ContractHandler.QueryAsync <IsCapperFunction, bool>(isCapperFunction, blockParameter));
        }
 public Task <bool> IsCapperQueryAsync(IsCapperFunction isCapperFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <IsCapperFunction, bool>(isCapperFunction, blockParameter));
 }