Content
Model.cs X Program.cs Querylt.Employee using System.Text; using System. Threading. Tasks; namespace QueryIt public class Person public string Name get; set; DoWorkO public class Employee : Person public int Id get; set; public virtual void DoWork() Console.WriteLine("Doing real work"); E public class Manager : Employee public override void DoWork() Console.WriteLine("Create a meeting");