public int DoSomething(IBar bar) { Count = bar.DoSomethingElse(1, 2); return(Count); }
public void DoSomethingWithoutResult(IBar bar) { Count = bar.DoSomethingElse(1, 2); }
public void DoSomething() { _bar.DoSomethingElse(); }