public TitresController(ITitreRepository titreRepository, IStyleRepository styleRepository, IArtisteRepository artisteRepository, IConfiguration configuration)
 {
     _titreRepository   = titreRepository;
     _styleRepository   = styleRepository;
     _artisteRepository = artisteRepository;
     _configuration     = configuration;
 }
 public ArtistesController(IArtisteRepository artisteRepository)
 {
     this._artisteRepository = artisteRepository;
 }
Exemple #3
0
 public ArtistsList(IArtisteRepository artisteRepository)
 {
     _artistRepository = artisteRepository;
 }
Exemple #4
0
 public RechercheController(IArtisteRepository artisteRepository, ITitreRepository titreRepository)
 {
     _artisteRepository = artisteRepository;
     _titreRepository   = titreRepository;
 }
Exemple #5
0
 public ArtisteController(IArtisteRepository artisteRepository)
 {
     _artisteRepository = artisteRepository;
 }
Exemple #6
0
 public TitreController(ITitreRepository titreRepository, IStyleRepository styleRepository, IArtisteRepository artisteRepository)
 {
     _titreRepository   = titreRepository;
     _styleRepository   = styleRepository;
     _artisteRepository = artisteRepository;
 }
 public ArtistesController(IArtisteRepository artisteRepository, IConfiguration configuration, IPaysRepository paysRepository)
 {
     _artisteRepository = artisteRepository;
     _paysRepository    = paysRepository;
     _configuration     = configuration;
 }
 public ArtisteController(IArtisteRepository artisteRepository, IWebHostEnvironment hostingEnvironment)
 {
     this._artisteRepository = artisteRepository;
     this.hostingEnvironment = hostingEnvironment;
 }
 public MusicController(IMusicRepository musicRepository, IAlbumRepository albumRepository, IArtisteRepository artisteRepository)
 {
     _musicRepository   = musicRepository;
     _albumRepository   = albumRepository;
     _artisteRepository = artisteRepository;
 }
Exemple #10
0
 public ResearchController(ITitreRepository titreRepository, IArtisteRepository artisteRepository)
 {
     _titreRepository   = titreRepository;
     _artisteRepository = artisteRepository;
 }