AI_Project_3.Quarter.Quarter C# (CSharp) 메소드

Quarter() 공개 메소드

Quarters house a yearNum, quarterType, and as well as a list of classes
public Quarter ( int yN, QuarterType qT ) : System
yN int
qT QuarterType
리턴 System
        public Quarter(int yN, QuarterType qT)
        {
            classes = new ObservableCollection<Class>();
            yearNum = yN;
            quarterType = qT;
        }