public SonglistService(SonglistRepository songlistRepository, SonglistListQuery songlistListQuery,
                        SongRepository songRepository, PlaylistRepository playlistRepository)
 {
     _songlistRepository = songlistRepository;
     _songlistListQuery  = songlistListQuery;
     _songRepository     = songRepository;
     _playlistRepository = playlistRepository;
 }
Beispiel #2
0
 public SonglistService(SonglistRepository songlistRepository, SonglistListQuery songlistListQuery, SongListQuery songListQuery,
                        SongRepository songRepository, ArtistRepository artistRepository, ClientRepository clientRepository)
 {
     this.songlistRepository = songlistRepository;
     this.songlistListQuery  = songlistListQuery;
     this.songRepository     = songRepository;
     this.songListQuery      = songListQuery;
     this.artistRepository   = artistRepository;
     this.clientRepository   = clientRepository;
 }
Beispiel #3
0
 public ClientService(ClientRepository clientRepository, ClientAccordingToEmailQuery clientAccordingToEmailQuery,
                      ClientListQuery clientListQuery, SonglistListQuery songlistListQuery, SonglistRepository songlistRepository,
                      UserAccountRepository userRepository)
 {
     this.clientRepository            = clientRepository;
     this.clientAccordingToEmailQuery = clientAccordingToEmailQuery;
     this.clientListQuery             = clientListQuery;
     this.songlistRepository          = songlistRepository;
     this.songlistListQuery           = songlistListQuery;
     this.userRepository = userRepository;
 }