public Task <ushort> GetTotalWidthQueryAsync(ushort x, ushort y, BlockParameter blockParameter = null)
        {
            var getTotalWidthFunction = new GetTotalWidthFunction();

            getTotalWidthFunction.X = x;
            getTotalWidthFunction.Y = y;

            return(ContractHandler.QueryAsync <GetTotalWidthFunction, ushort>(getTotalWidthFunction, blockParameter));
        }
 public Task <ushort> GetTotalWidthQueryAsync(GetTotalWidthFunction getTotalWidthFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetTotalWidthFunction, ushort>(getTotalWidthFunction, blockParameter));
 }