public PassengerCurrencyCanada(string szName)
            : base(szName)
        {
            CurrencyTimespanType = TimespanType.CalendarMonths;
            ExpirationSpan       = 6;
            RequiredEvents       = Discrepancy = 5;
            fcCanada             = new FlightExperienceCanada();

            Query = null;
        }
Beispiel #2
0
        public NightCurrencyCanada(string szName) : base(szName, true)  // night touch-and-go landings count.
        {
            NightTakeoffCurrency.CurrencyTimespanType = this.CurrencyTimespanType = TimespanType.CalendarMonths;
            NightTakeoffCurrency.ExpirationSpan       = this.ExpirationSpan = TimeSpanCanada;
            this.RequiredEvents = this.Discrepancy = RequiredLandingsCanada;
            NightTakeoffCurrency.RequiredEvents = NightTakeoffCurrency.Discrepancy = RequiredTakeoffsCanada;
            fcCanada = new FlightExperienceCanada();

            Query = null;
        }