6 lines
110 B
C#
6 lines
110 B
C#
using System;
|
|
|
|
class Teacher : Empoloyee
|
|
{
|
|
public void Teach() => Console.WriteLine("I'am teaching");
|
|
} |