Пример #1
0
 public JamViewModel(int jamNumber, long currentGameTimeInMilliseconds, int currentPeriod)
 {
     this.JamNumber = jamNumber;
     this.GameTimeElapsedMillisecondsStart = currentGameTimeInMilliseconds;
     this.CurrentPeriod = currentPeriod;
     JamClock= new StopwatchWrapper(PolicyViewModel.Instance.JamClockTimePerJam);
 }
 public TimeOutViewModel(StopwatchWrapper timeOutClock, TimeOutTypeEnum type)
 {
     TimeOutClock = timeOutClock;
     TimeOutType = type;
 }