Beispiel #1
0
        internal static Song ToSong(SongModel songModel, Song song = null)
        {
            if (song == null)
            {
                song = new Song();
            }

            song.Title = songModel.Title;
            song.Year = songModel.Year;
            song.Genre = songModel.Genre;
            song.AlbumID = songModel.AlbumID;

            return song;
        }