public LancamentoController(ILancamentoRepository lancamentoRepository,
                             ISubCategoriaRepository subCategoriaRepository,
                             ICategoriaRepository categoriaRepository,
                             IFavorecidoRepository favorecidoRepository,
                             IMapper mapper)
 {
     _lancamentoRepository   = lancamentoRepository;
     _subCategoriaRepository = subCategoriaRepository;
     _categoriaRepository    = categoriaRepository;
     _favorecidoRepository   = favorecidoRepository;
     _mapper = mapper;
 }
 public FavorecidoController(IFavorecidoRepository favorecidoRepository,
                             IMapper mapper)
 {
     _favorecidoRepository = favorecidoRepository;
     _mapper = mapper;
 }