Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code Evaluation done for .Net #34

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Akbarkhan24
Copy link

Made these changes:
// 1. This is to generate identifier for the Employees
int identifier = 1;

    // 2. The Hire Method:
    public Position? Hire(Name person, string title)
    {
        Employee employee = new Employee(identifier++, person);
        return CheckDirectReportPositions(root, employee, title);
    }

    // 3. Created another method CheckDirectReportPositions() For checking the direct report positions and hiring if exists.

    private Position? CheckDirectReportPositions(Position pos, Employee employee, string title)

@Akbarkhan24 Akbarkhan24 reopened this Oct 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant