public ArtistaController(IArtistaRepository artistaRepository, IArtistaService artistaService, IMapper mapper, INotificador notificador) : base(notificador) { _artistaRepository = artistaRepository; _artistaService = artistaService; _mapper = mapper; }
public AlbumController(IAlbumService albumService, IArtistaService artistaService) { _albumService = albumService; _artistaService = artistaService; }
public ArtistaController(IArtistaService artistaService, ICancionService cancionService) { this.artistaService = artistaService; this.cancionService = cancionService; }
public ArtistaController(IArtistaService artistaService, ILogger <ArtistaController> logger) { _artistaService = artistaService; _logger = logger; }
public ArtistaController(IArtistaService artistaService) { _artistaService = artistaService; }