Company.Employee.Employee C# (CSharp) Method

Employee() public method

public Employee ( string name ) : System
name string
return System
        public Employee(string name)
        {
            this.Name = name;
            this.Salary = 1;
            this.Subordinates = new List<Employee>();
        }
    }
Employee