public TrackPresentationService(ITrackDomainService trackDomainService, IGenreDomainService genreDomainService, IArtistDomainService artistDomainService, IAlbumDomainService albumDomainService)
 {
     this.trackDomainService  = trackDomainService;
     this.genreDomainService  = genreDomainService;
     this.artistDomainService = artistDomainService;
     this.albumDomainService  = albumDomainService;
 }
 public ArtistPresentationService(IArtistDomainService artistDomainService, IGenreDomainService genreDomainService)
 {
     this.artistDomainService = artistDomainService;
     this.genreDomainService  = genreDomainService;
 }
Exemple #3
0
 public ArtistsViewComponent(IArtistDomainService artistDomainService)
 {
     this.artistDomainService = artistDomainService;
 }
Exemple #4
0
 // GET: Admin/Artist
 public ArtistController(IArtistDomainService artistDomainService, IArtistPresentationService artistPresentationService)
 {
     this.artistDomainService       = artistDomainService;
     this.artistPresentationService = artistPresentationService;
 }