public void StopPlaying() { if (IsPlaying()) { PlayItem = null; } }
public void Play(PlayItem playItem) { StopPlaying(); PlayItem = playItem; PlayItem.Play(); }
public void Play(PlayItem playItem) => Player.Play(playItem);