EternalPlay.Technomonk.BusinessLayer.QualityPeriod.QualityPeriod C# (CSharp) Méthode

QualityPeriod() private méthode

Constructs a QualityPeriod with the given quality and period definition data
private QualityPeriod ( Cycle parent, Quality quality, System.DateTime startDate, System.DateTime endDate ) : System
parent Cycle Parent object.
quality Quality Quality being defined for the period
startDate System.DateTime Starting for the period.
endDate System.DateTime Ending for the period.
Résultat System
        internal QualityPeriod(Cycle parent, Quality quality, DateTime startDate, DateTime endDate)
        {
            _cycle = parent;
            _quality = quality;
            _startDate = startDate;
            _endDate = endDate;
        }
QualityPeriod