Exemplo n.º 1
0
 public CategoryRepository(SaitynaiDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public CommentController(ICommentRepository commentRepository, IThreadRepository threadRepository, SaitynaiDbContext context)
 {
     _commentRepository = commentRepository;
     _threadRepository  = threadRepository;
     _context           = context;
 }
Exemplo n.º 3
0
 public CommentRepository(SaitynaiDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public UserController(SaitynaiDbContext context, IUserRepository userRepository, IConfiguration config)
 {
     _context        = context;
     _userRepository = userRepository;
     _config         = config;
 }
Exemplo n.º 5
0
 public ThreadRepository(SaitynaiDbContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public UserRepository(SaitynaiDbContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public CategoryController(ICategoryRepository categoryRepository, SaitynaiDbContext context)
 {
     _categoryRepository = categoryRepository;
     _context            = context;
 }
Exemplo n.º 8
0
 public ThreadController(ICategoryRepository categoryRepository, IThreadRepository threadRepository, SaitynaiDbContext context)
 {
     _categoryRepository = categoryRepository;
     _threadRepository   = threadRepository;
     _context            = context;
 }