public Task <GetVoteBallotOutputDTO> GetVoteBallotQueryAsync(BigInteger electionId, BlockParameter blockParameter = null)
        {
            var getVoteBallotFunction = new GetVoteBallotFunction();

            getVoteBallotFunction.ElectionId = electionId;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetVoteBallotFunction, GetVoteBallotOutputDTO>(getVoteBallotFunction, blockParameter));
        }
 public Task <GetVoteBallotOutputDTO> GetVoteBallotQueryAsync(GetVoteBallotFunction getVoteBallotFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetVoteBallotFunction, GetVoteBallotOutputDTO>(getVoteBallotFunction, blockParameter));
 }