예제 #1
0
        public static Schedule Create(CodeTerm codeTerm)
        {
            if (codeTerm == null)
                throw new ArgumentNullException("codeTerm");

            Schedule result = new Schedule();
            result.ProcessResults(codeTerm);

            return result;
        }
예제 #2
0
 internal AppState(App application)
 {
     _application = application;
     _scheduler = new Scheduler();
     _schedule = null;
 }
예제 #3
0
 internal AppState(App application)
 {
     _application = application;
     _scheduler   = new Scheduler();
     _schedule    = null;
 }