Ejemplo n.º 1
0
 public RecordingsController(
     IAdminRecordingService recordingService,
     IAdminLabelService labelService,
     IAdminArtistService artistService,
     IAdminFormatService formatService)
 {
     this.recordingService = recordingService;
     this.labelService     = labelService;
     this.artistService    = artistService;
     this.formatService    = formatService;
 }
Ejemplo n.º 2
0
 public SongsController(IAdminArtistService artistService, IAdminSongService songService)
 {
     this.artistService = artistService;
     this.songService   = songService;
 }
 public AlbumsController(IAdminArtistService artistService, IAdminAlbumService albumService, IAdminSongService songService)
 {
     this.artistService = artistService;
     this.albumService  = albumService;
     this.songService   = songService;
 }
 public ArtistsController(IAdminArtistService artistService)
 {
     this.artistService = artistService;
 }