Can someone take a look and tell me what I have wrong here. VS
2019 .net framework console app c##
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace dropbox10
{
class MainClass
{
public static void Main(string[] args)
{
//create a list of employees
List<Employee> allEmployees = new
List<Employee>();
//create two full time employees
FullTimeEmployee fe1 = new FullTimeEmployee("111", "Alice",
67888.00m);
FullTimeEmployee fe2 = new FullTimeEmployee("222", "Bob",
67555.00m);
//create two part time employees
PartTimeEmployee pe1...