EternalPlay.Technomonk.BusinessLayer.Cycle.Cycle C# (CSharp) Method

Cycle() private method

Constructs a Cycle with the given parent YearlySchedule and starting date
private Cycle ( YearlySchedule parent, System.DateTime startDate ) : System
parent YearlySchedule Parent reference.
startDate System.DateTime Starting date for the cycle.
return System
        internal Cycle(YearlySchedule parent, DateTime startDate)
        {
            _yearlySchedule = parent;
            _qualityPeriods = CreateQualityPeriods(startDate, this);
        }