示例#1
0
    public static void Run()
    {       // Exemple of consuming the method
        var input = new BarQuery {
            Bar_Label = "user input", Bar_Ig = 42
        };

        BarResponse result = Bar(input);
    }
示例#2
0
 public BarResponse Bar(BarQuery bar) =>
 Execute(bar, query => _wsClient.Bar(query));