interface ICamera { // ... } class MobilePhone { // ... } class CameraPhone: ICamera, MobilePhone { // ... }