Exemplo n.º 1
0
 public UploadController(ISongs songs, IAlbums albums, IArtists artists)
 {
     _songs   = songs;
     _albums  = albums;
     _artists = artists;
     _session = new DriveSession();
 }
Exemplo n.º 2
0
 public AlbumsController(IArtists artists)
 {
     this._Artists = artists;
 }
 public ArtistsController(ILogger <ArtistsController> logger, ISets setsService, IArtists artistsService)
 {
     this.logger         = logger;
     this.setsService    = setsService;
     this.artistsService = artistsService;
 }