private IBar GetBar(BarOperation op)
 {
     return(op.SomeValue ? this.left : this.right);
 }
 public void BarMethod(BarOperation op)
 {
     this.GetBar(op).BarMethod(op);
 }