class Engineer implements Employee { name: string; title: string; logID() { return `${this.name} - ${this.title}`; } }