Class C# Tutorial

interface IFoo
{
    void ExecuteFoo();
}
interface IBar
{
    void ExecuteBar();
}
class Tester: IFoo, IBar
{
    public void ExecuteFoo() {}
    public void ExecuteBar() {}
}