Example #1
0
 public IList <Song> ListOfSongs()
 {
     return(Injection.Kernel.Get <ISongRepository>().SearchSongs("AlbumArtistId", AlbumArtistId.ToString()));
 }
Example #2
0
        /// <summary>
        /// Public methods
        /// </summary>

        public IList <Album> ListOfAlbums()
        {
            return(Injection.Kernel.Get <IAlbumRepository>().SearchAlbums("AlbumArtistId", AlbumArtistId.ToString()));
        }