AI_Project_3.Quarter.Quarter C# (CSharp) Method

Quarter() public method

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