Exemplo n.º 1
0
 public UserRepository(
     StackUnderflowDbContext context,
     IMapper mapper)
     : base(context)
 {
     _mapper = mapper;
 }
Exemplo n.º 2
0
 public ResponseService(StackUnderflowDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public Repository(StackUnderflowDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public AuthService(StackUnderflowDbContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public QuestionService(StackUnderflowDbContext context, UserHelper userHelper)
 {
     _context    = context;
     _userHelper = userHelper;
 }
Exemplo n.º 6
0
 public UserHelper(StackUnderflowDbContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public VoteRepository(StackUnderflowDbContext context)
     : base(context)
 {
 }
Exemplo n.º 8
0
 public CommentService(StackUnderflowDbContext context, UserHelper userHelper)
 {
     _context    = context;
     _userHelper = userHelper;
 }