public AlbumReviewService(AlbumReviewListQuery albumReviewListQuery, AlbumReviewRepository albumReviewRepository,
                           AlbumRepository albumRepository, ClientRepository clientRepository)
 {
     this.albumReviewListQuery  = albumReviewListQuery;
     this.albumReviewRepository = albumReviewRepository;
     this.albumRepository       = albumRepository;
     this.clientRepository      = clientRepository;
 }
Example #2
0
 public AlbumService(AlbumRepository albumRepository, AlbumListQuery albumListQuery, AlbumReviewListQuery albumReviewListQuery,
                     AlbumReviewRepository albumReviewRepository, ArtistRepository artistRepository, SongListQuery songListQuery,
                     SongRepository songRepository, ArtistListQuery artistListQuery, ClientRepository clientRepository)
 {
     this.albumRepository       = albumRepository;
     this.albumListQuery        = albumListQuery;
     this.albumReviewRepository = albumReviewRepository;
     this.albumReviewListQuery  = albumReviewListQuery;
     this.artistRepository      = artistRepository;
     this.songListQuery         = songListQuery;
     this.songRepository        = songRepository;
     this.artistListQuery       = artistListQuery;
     this.clientRepository      = clientRepository;
 }