public Task <ShipsOutputDTO> ShipsQueryAsync(string returnValue1, BigInteger returnValue2, BlockParameter blockParameter = null)
        {
            var shipsFunction = new ShipsFunction();

            shipsFunction.ReturnValue1 = returnValue1;
            shipsFunction.ReturnValue2 = returnValue2;

            return(ContractHandler.QueryDeserializingToObjectAsync <ShipsFunction, ShipsOutputDTO>(shipsFunction, blockParameter));
        }
 public Task <ShipsOutputDTO> ShipsQueryAsync(ShipsFunction shipsFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <ShipsFunction, ShipsOutputDTO>(shipsFunction, blockParameter));
 }