MakeClassSchedule.Algorithm.Professor.Professor C# (CSharp) Метод

Professor() публичный Метод

Constructor of Professor's Class
public Professor ( int id, string name, bool schedule ) : System
id int
name string
schedule bool
Результат System
        public Professor(int id, string name, bool[,] schedule)
        {
            _name = name;
            _id = id;
            _schedule = schedule;
        }