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