public SongViewModel(SongViewModel songViewModel)
 {
     _song = songViewModel._song;
     _title = songViewModel.Title;
     _artist = songViewModel.Artist;
     _album = songViewModel.Album;
 }
 public SongViewModel(Song song)
 {
     _song = song;
     _title = _song.Title;
     _artist = _song.Artist;
     _album = _song.Album;
 }