Example #1
0
 public override void OnInitSmall(Wildcat.DB.System.Block block)
 {
     var parent = (Block.Artist)Parent;
     Model = parent.Model.GetAlbums();
     State = BlockState.Small;
 }
Example #2
0
 public Collection.Album GetAlbums()
 {
     var col = new Collection.Album();
     var rep = new Repository.AlbumRepository();
     return rep.GetByArtistName(name);
 }