public Task <bool> IsPauserQueryAsync(string account, BlockParameter blockParameter = null)
        {
            var isPauserFunction = new IsPauserFunction();

            isPauserFunction.Account = account;

            return(ContractHandler.QueryAsync <IsPauserFunction, bool>(isPauserFunction, blockParameter));
        }
 public Task <bool> IsPauserQueryAsync(IsPauserFunction isPauserFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <IsPauserFunction, bool>(isPauserFunction, blockParameter));
 }