public ChaveService(ControleChavesContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 2
0
 public ControleService(ControleChavesContext context, IMapper mapper, IHttpContextAccessor contextAccessor)
 {
     _context         = context;
     _mapper          = mapper;
     _contextAccessor = contextAccessor;
 }
Exemplo n.º 3
0
 public BaseService(ControleChavesContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
     _db      = _context.Set <E>();
 }
Exemplo n.º 4
0
 public LocalizacaoService(ControleChavesContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 5
0
 public UserService(ControleChavesContext context) => _context = context;
 public FuncionarioService(ControleChavesContext context, IMapper mapper) : base(context, mapper)
 {
 }