예제 #1
0
 public TitresController(ITitreRepository titreRepository, IStyleRepository styleRepository, IArtisteRepository artisteRepository, IConfiguration configuration)
 {
     _titreRepository   = titreRepository;
     _styleRepository   = styleRepository;
     _artisteRepository = artisteRepository;
     _configuration     = configuration;
 }
예제 #2
0
 public ArtistesController(IArtisteRepository artisteRepository)
 {
     this._artisteRepository = artisteRepository;
 }
예제 #3
0
 public ArtistsList(IArtisteRepository artisteRepository)
 {
     _artistRepository = artisteRepository;
 }
예제 #4
0
 public RechercheController(IArtisteRepository artisteRepository, ITitreRepository titreRepository)
 {
     _artisteRepository = artisteRepository;
     _titreRepository   = titreRepository;
 }
예제 #5
0
 public ArtisteController(IArtisteRepository artisteRepository)
 {
     _artisteRepository = artisteRepository;
 }
예제 #6
0
 public TitreController(ITitreRepository titreRepository, IStyleRepository styleRepository, IArtisteRepository artisteRepository)
 {
     _titreRepository   = titreRepository;
     _styleRepository   = styleRepository;
     _artisteRepository = artisteRepository;
 }
예제 #7
0
 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;
 }
예제 #10
0
 public ResearchController(ITitreRepository titreRepository, IArtisteRepository artisteRepository)
 {
     _titreRepository   = titreRepository;
     _artisteRepository = artisteRepository;
 }