MakeClassSchedule.Algorithm.Professor.Professor C# (CSharp) Method

Professor() public method

Constructor of Professor's Class
public Professor ( int id, string name, bool schedule ) : System
id int
name string
schedule bool
return System
        public Professor(int id, string name, bool[,] schedule)
        {
            _name = name;
            _id = id;
            _schedule = schedule;
        }