Esempio n. 1
0
 public AnunciantesController(IAnuncianteRepository anuncianteRepository,
                              IAnuncianteService anuncianteService,
                              IMapper mapper,
                              INotifier notifier) : base(notifier)
 {
     _anuncianteRepository = anuncianteRepository;
     _anuncianteService    = anuncianteService;
     _mapper = mapper;
 }
 public AnuncianteService(IAnuncianteRepository anuncianteRepository, INotifier notifier) : base(notifier)
 {
     _anuncianteRepository = anuncianteRepository;
 }