public PollingService(AnkietyzatorDbContext context, IMapper mapper, IQuestionService questionService,
                       IStatService statService)
 {
     _questionService = questionService;
     _statService     = statService;
     _mapper          = mapper;
     _context         = context;
 }
Exemplo n.º 2
0
 public KeyService(AnkietyzatorDbContext context)
 {
     _context = context;
 }
 public GoogleController(AnkietyzatorDbContext context) => _context = context;
 public RegisterService(AnkietyzatorDbContext context, IMapper mapper, IKeyService keyService)
 {
     _keyService = keyService;
     _mapper     = mapper;
     _context    = context;
 }
 public StatService(AnkietyzatorDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 6
0
 public QuestionService(AnkietyzatorDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
 public AnswerService(AnkietyzatorDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }