public AddSongViewModel(SongListViewModel songList)
 {
     this._songList = songList;
     this.Song      = new SongViewModel();
     AddSongCommand = new RelayCommand(AddSong, CanAddSong);
 }