public int AddNewSong(Song newSong) { if (newSong != null) { _songService.AddItem(newSong); _songService.UpdateFileWithSongs(newSong); Console.WriteLine("Successfully added! Press any key to continue..."); return(newSong.Id); } else { return(-1); } }