public Task <GetElectoralListOutputDTO> GetElectoralListQueryAsync(BigInteger electionId, BlockParameter blockParameter = null)
        {
            var getElectoralListFunction = new GetElectoralListFunction();

            getElectoralListFunction.ElectionId = electionId;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetElectoralListFunction, GetElectoralListOutputDTO>(getElectoralListFunction, blockParameter));
        }
 public Task <GetElectoralListOutputDTO> GetElectoralListQueryAsync(GetElectoralListFunction getElectoralListFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetElectoralListFunction, GetElectoralListOutputDTO>(getElectoralListFunction, blockParameter));
 }