Exemplo n.º 1
0
        // Constructors
        public MonthlyTrigger(MonthlyTime monthlyTime)
        {
            #region Contracts

            if (monthlyTime == null) throw new ArgumentNullException();

            #endregion

            // Arguments
            _monthlyTimeCollection = new MonthlyTime[] { monthlyTime };
        }
Exemplo n.º 2
0
        // Constructors
        public MonthlyTrigger(MonthlyTime monthlyTime)
        {
            #region Contracts

            if (monthlyTime == null)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Arguments
            _monthlyTimeCollection = new MonthlyTime[] { monthlyTime };
        }