Call of the parent class constructor in C#

class Man {
    public string Name { getset; }

    public Man(string name) {
        Name = name;
    }
}

class EmployeeMan {
    public string Position { getset; }

    public Employee(string name, string position): 
    base(name) {
        Position = position;
    }
}

var employee = new Employee("Max""booker");