Example #1
0
 public Functions(
     ISpotifyAppService spotifyAppService,
     ISubscriptionAppService subscriptionAppService,
     IArtistAppService artistAppService,
     IAlbumAppService albumAppService,
     ISubscriberAppService subscriberAppService
     )
 {
     _spotifyAppService      = spotifyAppService;
     _subscriptionAppService = subscriptionAppService;
     _artistAppService       = artistAppService;
     _albumAppService        = albumAppService;
     _subscriberAppService   = subscriberAppService;
 }
Example #2
0
 public SubscriptionController(
     ISubscriberAppService subscriberAppService,
     IArtistAppService artistAppService,
     ISubscriptionAppService subscriptionAppService,
     ISpotifyAppService spotifyAppService,
     EmailManager emailManager,
     TemplateManager templateManager,
     IConfiguration configuration)
 {
     _subscriberAppService   = subscriberAppService;
     _artistAppService       = artistAppService;
     _subscriptionAppService = subscriptionAppService;
     _spotifyAppService      = spotifyAppService;
     _emailManager           = emailManager;
     _templateManager        = templateManager;
     _configuration          = configuration;
 }
Example #3
0
 public ArtistController(IArtistAppService service)
 {
     this.service = service;
 }
 public StoreManagerController(IAlbumAppService albumAppService, IArtistAppService artistAppService, IGenreAppService genreAppService)
 {
     _albumAppService = albumAppService;
     _artistAppService = artistAppService;
     _genreAppService = genreAppService;
 }
Example #5
0
 public StoreManagerController(IAlbumAppService albumAppService, IArtistAppService artistAppService, IGenreAppService genreAppService)
 {
     _albumAppService  = albumAppService;
     _artistAppService = artistAppService;
     _genreAppService  = genreAppService;
 }
Example #6
0
 public SongController(ISongAppService songService, IArtistAppService artistService, IStyleAppService styleService)
 {
     this.songService   = songService;
     this.artistService = artistService;
     this.styleService  = styleService;
 }