public Song GetDetails(int id) { Song song = new SongDAO().SelectById(id); return(song); }
public List <Song> Search(String keyword) { List <Song> songs = new SongDAO().SelectByKeyword(keyword); return(songs); }
public List <Song> GetAll() { List <Song> songs = new SongDAO().SelectAll(); return(songs); }