Exemplo n.º 1
0
 public ReportWindow(TimerEngine t, WorkWinderDisplay d, FileMechanism f)
 {
     InitializeComponent();
     DISPLAY    = d;
     FILEMECH   = f;
     TIMEENGINE = t;
     initializeWindow();
 }
Exemplo n.º 2
0
 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();
 }
Exemplo n.º 3
0
 public FileMechanism(TimerEngine t, WorkWinderDisplay w)
 {
     DISPLAY    = w;
     TIMEENGINE = t;
 }