示例#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;
 }