public Task <ushort> TranslateTileToWidthQueryAsync(ushort tileType, BlockParameter blockParameter = null)
        {
            var translateTileToWidthFunction = new TranslateTileToWidthFunction();

            translateTileToWidthFunction.TileType = tileType;

            return(ContractHandler.QueryAsync <TranslateTileToWidthFunction, ushort>(translateTileToWidthFunction, blockParameter));
        }
 public Task <ushort> TranslateTileToWidthQueryAsync(TranslateTileToWidthFunction translateTileToWidthFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <TranslateTileToWidthFunction, ushort>(translateTileToWidthFunction, blockParameter));
 }