Beispiel #1
0
        public Task <GetModulesPaginatedOutputDTO> GetModulesPaginatedQueryAsync(string start, BigInteger pageSize, BlockParameter blockParameter = null)
        {
            var getModulesPaginatedFunction = new GetModulesPaginatedFunction();

            getModulesPaginatedFunction.Start    = start;
            getModulesPaginatedFunction.PageSize = pageSize;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetModulesPaginatedFunction, GetModulesPaginatedOutputDTO>(getModulesPaginatedFunction, blockParameter));
        }
 public Task <GetModulesPaginatedOutputDTO> GetModulesPaginatedQueryAsync(GetModulesPaginatedFunction getModulesPaginatedFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetModulesPaginatedFunction, GetModulesPaginatedOutputDTO>(getModulesPaginatedFunction, blockParameter));
 }