public Task <string> GetWatchTypeQueryAsync(BigInteger gUID, BlockParameter blockParameter = null)
        {
            var getWatchTypeFunction = new GetWatchTypeFunction();

            getWatchTypeFunction.GUID = gUID;

            return(ContractHandler.QueryAsync <GetWatchTypeFunction, string>(getWatchTypeFunction, blockParameter));
        }
 public Task <string> GetWatchTypeQueryAsync(GetWatchTypeFunction getWatchTypeFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetWatchTypeFunction, string>(getWatchTypeFunction, blockParameter));
 }