public Task <ushort> GetHarborLocationQueryAsync(ushort x, ushort y, BlockParameter blockParameter = null)
        {
            var getHarborLocationFunction = new GetHarborLocationFunction();

            getHarborLocationFunction.X = x;
            getHarborLocationFunction.Y = y;

            return(ContractHandler.QueryAsync <GetHarborLocationFunction, ushort>(getHarborLocationFunction, blockParameter));
        }
 public Task <ushort> GetHarborLocationQueryAsync(GetHarborLocationFunction getHarborLocationFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetHarborLocationFunction, ushort>(getHarborLocationFunction, blockParameter));
 }