Esempio n. 1
0
 public void AddSongToLibrary(AddRemoveSongModel model)
 {
     _libraryService.AddSongToLibraryAsync(model.LibraryId, model.SongId);
 }
Esempio n. 2
0
 public void RemoveSongFromLibrary(AddRemoveSongModel model)
 {
     _libraryService.RemoveSongFromLibraryAsync(model.LibraryId, model.SongId);
 }