Ejemplo n.º 1
0
 public override Nothing Visit(ISubtotalUser sub)
 {
     ShowSubtotal(sub, $"U{sub.User.AsUser()}");
     return(Nothing.AtAll);
 }
Ejemplo n.º 2
0
 public override IAsyncEnumerable <string> Visit(ISubtotalUser sub)
 {
     Depth++; // Hack
     return(ShowSubtotal(sub));
 }
 public abstract Nothing Visit(ISubtotalUser sub);
Ejemplo n.º 4
0
 public override Nothing Visit(ISubtotalUser sub)
 {
     Depth++; // Hack
     ShowSubtotal(sub);
     return(Nothing.AtAll);
 }
Ejemplo n.º 5
0
 JProperty ISubtotalVisitor <JProperty> .Visit(ISubtotalUser sub)
 => new JProperty(sub.User, VisitChildren(sub));
 public abstract IAsyncEnumerable <string> Visit(ISubtotalUser sub);