예제 #1
0
 public ServiceLivro(IRepositoryLivro repositoryLivro,
                     IServiceNotificador notificador) : base(notificador)
 {
     _repositoryLivro = repositoryLivro;
 }
예제 #2
0
 protected BaseService(IServiceNotificador notificador)
 {
     _notificador = notificador;
 }
예제 #3
0
 public LivroController(IServiceLivro serviceLivro, IMapper mapper, IServiceNotificador notificador)
 {
     _serviceLivro = serviceLivro;
     _mapper       = mapper;
     _notificador  = notificador;
 }