public ConhecimentoServices(IConhecimentoRepository conhecimentoRepository,
                             INotificador notificador) : base(notificador)
 {
     _conhecimentoRepository = conhecimentoRepository;
 }
示例#2
0
 public ConhecimentoController(IConhecimentoRepository conhecimentoRepository, IMapper mapper)
 {
     this.conhecimentoRepository = conhecimentoRepository;
     this.mapper = mapper;
 }