Esempio n. 1
0
        public SchedulerForm(SchedulerData data)
        {
            InitializeComponent();

            _data = data;
            _scheduleService = new ScheduleService();
        }
Esempio n. 2
0
 public SchedulerModule()
 {
     _scheduleService = new ScheduleService();
     _currentContexts = new Dictionary<IProgramContext, ScheduleItem>();
     _cachedPrograms = new Dictionary<string, IProgramContext>();
 }
Esempio n. 3
0
 public SchedulerModule()
 {
     _scheduleService = new ScheduleService();
     _contexts = new Dictionary<IProgramContext, ScheduleItem>();
 }