namespace MultipleInterfaces
class CellPhone : Device, Volume, Pluggable
Console.WriteLine("Switching on");
Console.WriteLine("Switching on");
Console.WriteLine("Volume up");
Console.WriteLine("Volume down");
Console.WriteLine("Plugging In");
Console.WriteLine("Plugging Off");
public static void Main(string[] args)
var cellPhone = new CellPhone();