public UsuarioService(InnovativoContext context, IMapper mapper, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
Пример #2
0
 public ClienteService(InnovativoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #3
0
 public EficaciaCanaisService(InnovativoContext context, IUsuarioService usuarioService, IMapper mapper)
 {
     _context        = context;
     _usuarioService = usuarioService;
     _mapper         = mapper;
 }