public OportunidadeService(IOportunidadeRepository oportunidadeRepository,
                            IOportunidadeNivelRepository oportunidadeNivelRepository,
                            INivelRepository nivelRepository, IIBGEService iBGEService)
 {
     _oportunidadeNivelRepository = oportunidadeNivelRepository;
     _oportunidadeRepository      = oportunidadeRepository;
     _nivelRepository             = nivelRepository;
     _iBGEService = iBGEService;
 }
 public OportunidadesController(IOportunidadeRepository oportunidadeRepository,
                                IMapper mapper,
                                IOportunidadeService oportunidadeService,
                                INotificador notificador,
                                IUser user) : base(notificador, user)
 {
     _oportunidadeRepository = oportunidadeRepository;
     _oportunidadeService    = oportunidadeService;
     _mapper = mapper;
     _user   = user;
 }
Example #3
0
 public OportunidadeService(INotificador notificador,
                            IOportunidadeRepository oportunidadeRepository,
                            IOportunidadeLogService oportunidadeLogService,
                            ICargoService cargoService,
                            IVendedorCargoService vendedorCargoService,
                            IVeiculoRepository veiculoRepository,
                            IUser user) : base(notificador)
 {
     _oportunidadeRepository = oportunidadeRepository;
     _oportunidadeLogService = oportunidadeLogService;
     _cargoService           = cargoService;
     _vendedorCargoService   = vendedorCargoService;
     _veiculoRepository      = veiculoRepository;
     _user = user;
 }
Example #4
0
 public OportunidadeService(IOportunidadeRepository oportunidadeRepository, INivelRepository nivelRepository, IIBGERepository iBGERepository)
 {
     _oportunidadeRepository = oportunidadeRepository;
     _nivelRepository        = nivelRepository;
     _iBGERepository         = iBGERepository;
 }