Beispiel #1
0
 public Application(IDiscServices <Collection> collectionServices,
                    IDiscServices <WishList> wishListServices,
                    ILogger logger)
 {
     _collectionServices = collectionServices;
     _wishListServices   = wishListServices;
     _logger             = logger;
 }
Beispiel #2
0
 public CollectionServices(IDiscServices <WishList> wishListServices,
                           IEntityRepository <Disc> discRepository,
                           IEntityRepository <WishList> wishListRepository,
                           ILogger logger,
                           IEntityRepository <Collection> collectionRepository,
                           IEntityRepository <Artist> artistRepository)
     : base(artistRepository)
 {
     _wishListServices     = wishListServices;
     _discRepository       = discRepository;
     _wishListRepository   = wishListRepository;
     _collectionRepository = collectionRepository;
     _logger           = logger;
     _artistRepository = artistRepository;
 }