Exemple #1
0
 public AlbumSelector(Handshake handshake, IEntityFactory <AmpacheAlbum> factory) : base(handshake, factory)
 {
 }
 public ArtistSelector(Handshake handshake, IEntityFactory <AmpacheArtist> factory) : base(handshake, factory)
 {
 }
 public AmpacheSelectorBase(Handshake handshake, IEntityFactory <TEntity> factory)
 {
     _handshake = handshake;
     _factory   = factory;
 }
Exemple #4
0
 public PlaylistSelector(Handshake handshake, IEntityFactory <AmpachePlaylist> factory, IEntityFactory <AmpacheSong> songFactory)
     : base(handshake, factory)
 {
     _songFactory = songFactory;
 }
Exemple #5
0
 public AmpacheSelectionFactory(Handshake hs)
 {
     handshake = hs;
 }