public ReportWindow(TimerEngine t, WorkWinderDisplay d, FileMechanism f) { InitializeComponent(); DISPLAY = d; FILEMECH = f; TIMEENGINE = t; initializeWindow(); }
public WorkWinderDisplay() { InitializeComponent(); initializeTimers(); theme = new xColors(); initializeColors(); initializeTLP(ref baseTLP); TIMEENGINE = new TimerEngine(this, FILEMECH); FILEMECH = new FileMechanism(TIMEENGINE, this); CONFDIS = new ReportWindow(TIMEENGINE, this, FILEMECH); }
public TimerEngine(WorkWinderDisplay w, FileMechanism f) { DISPLAY = w; FILEMECH = new FileMechanism(this, DISPLAY); for (int i = 0; i < StaticUtility.maximumRows; i++) { activeTimeArray[i] = new TimeSpan(0, 0, 0); } initializeTimers(); engineInitialized(); }