engineer.ts 131 B

1234567
  1. class Engineer implements Employee {
  2. name: string;
  3. title: string;
  4. logID() {
  5. return `${this.name} - ${this.title}`;
  6. }
  7. }