public MusicController(IMusicAppService musicAppService,
                        ISingerAppService singerAppService, IAlbumAppService albumAppService)
 {
     _musicAppService  = musicAppService;
     _singerAppService = singerAppService;
     _albumAppService  = albumAppService;
 }
예제 #2
0
 public HomeController(ISingerAppService singerAppService, IAlbumAppService albumAppService,
                       IMusicAppService musicAppService, IUserAppService userAppService)
 {
     _singerAppService = singerAppService;
     _albumAppService  = albumAppService;
     _musicAppService  = musicAppService;
     _userAppService   = userAppService;
 }
예제 #3
0
 public Functions(
     ISpotifyAppService spotifyAppService,
     ISubscriptionAppService subscriptionAppService,
     IArtistAppService artistAppService,
     IAlbumAppService albumAppService,
     ISubscriberAppService subscriberAppService
     )
 {
     _spotifyAppService      = spotifyAppService;
     _subscriptionAppService = subscriptionAppService;
     _artistAppService       = artistAppService;
     _albumAppService        = albumAppService;
     _subscriberAppService   = subscriberAppService;
 }
예제 #4
0
 public HomeController(IAlbumAppService albumAppService)
 {
     _albumAppService = albumAppService;
 }
예제 #5
0
 public AlbumController(IAlbumAppService app)
 {
     App = app;
 }
 public ShoppingCartController(IAlbumAppService albumAppService, ICartAppService cartAppService)
 {
     _albumAppService = albumAppService;
     _cartAppService  = cartAppService;
 }
 public StoreController(IGenreAppService genreAppService, IAlbumAppService albumAppService)
 {
     _genreAppService = genreAppService;
     _albumAppService = albumAppService;
 }
 public StoreManagerController(IAlbumAppService albumAppService, IArtistAppService artistAppService, IGenreAppService genreAppService)
 {
     _albumAppService = albumAppService;
     _artistAppService = artistAppService;
     _genreAppService = genreAppService;
 }
예제 #9
0
 public StoreManagerController(IAlbumAppService albumAppService, IArtistAppService artistAppService, IGenreAppService genreAppService)
 {
     _albumAppService  = albumAppService;
     _artistAppService = artistAppService;
     _genreAppService  = genreAppService;
 }
 public HomeController(IAlbumAppService albumAppService)
 {
     _albumAppService = albumAppService;
 }
 public ShoppingCartController(IAlbumAppService albumAppService, ICartAppService cartAppService)
 {
     _albumAppService = albumAppService;
     _cartAppService = cartAppService;
 }
예제 #12
0
 public StoreController(IGenreAppService genreAppService, IAlbumAppService albumAppService)
 {
     _genreAppService = genreAppService;
     _albumAppService = albumAppService;
 }
 public AlbumController(IAlbumAppService albumAppService, ISingerAppService singerAppService)
 {
     _albumAppService  = albumAppService;
     _singerAppService = singerAppService;
 }