public Task <GetShipOutputDTO> GetShipQueryAsync(ushort x, ushort y, string address, BlockParameter blockParameter = null)
        {
            var getShipFunction = new GetShipFunction();

            getShipFunction.X       = x;
            getShipFunction.Y       = y;
            getShipFunction.Address = address;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetShipFunction, GetShipOutputDTO>(getShipFunction, blockParameter));
        }
 public Task <GetShipOutputDTO> GetShipQueryAsync(GetShipFunction getShipFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetShipFunction, GetShipOutputDTO>(getShipFunction, blockParameter));
 }