public PauseState(PlayPauseControl controlInstance)
 {
     _controlInstance = controlInstance;
 }
 public PlayState(PlayPauseControl controlInstance, PauseState pauseState)
 {
     _controlInstance = controlInstance;
     _pauseState      = pauseState;
 }