Example #1
0
        static void Main(string[] args)
        {
            var something = new AlbumRepository();
            var another = something.GetAlbums(7);

            var som = another[0];
        }
Example #2
0
 public void AlbumRepository_GetAlbums_ValidID()
 {
     var repo = new AlbumRepository();
     var something = repo.GetAlbums(7);
     var track = something[0];
 }