public static Schedule Create(CodeTerm codeTerm) { if (codeTerm == null) throw new ArgumentNullException("codeTerm"); Schedule result = new Schedule(); result.ProcessResults(codeTerm); return result; }
internal AppState(App application) { _application = application; _scheduler = new Scheduler(); _schedule = null; }