Example #1
0
 public DataFormatter(ITimerInterface timer)
 {
     this.timer = timer;
 }
Example #2
0
 /// <summary>
 /// Creates a new Timer
 /// </summary>
 public Timer()
 {
     if (Implementation != null)
         m_timer = Implementation.NewTimer();
     else
     {
         throw new BaseSystemNotInitializedException(Implementation, typeof(Timer));
     }
 }