예제 #1
0
 public UsersController(_8BDAPIContext context, UserLevelHelper usr, AuthHelper auth, IEmailSender emailSender, StringHelper stringHelper, CommonHelper common)
 {
     _context      = context;
     _usr          = usr;
     _auth         = auth;
     _emailSender  = emailSender;
     _stringHelper = stringHelper;
     _common       = common;
 }
예제 #2
0
 public MessagesController(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #3
0
 public CommonHelper(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #4
0
 public EntryNoticesController(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #5
0
 public EntriesController(_8BDAPIContext context, AuthHelper auth, IMapper mapper)
 {
     _context = context;
     _auth    = auth;
     _mapper  = mapper;
 }
예제 #6
0
 public LoginController(IConfiguration config, _8BDAPIContext context, StringHelper stringHelper)
 {
     _config  = config;
     _context = context;
 }
예제 #7
0
 public UserLevelHelper(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #8
0
 public AuthHelper(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #9
0
 public UserLevelsController(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #10
0
 public SubjectsController(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #11
0
 public GarbageEntriesController(_8BDAPIContext context, AuthHelper auth)
 {
     _context = context;
     _auth    = auth;
 }
예제 #12
0
 public AnnouncementsController(_8BDAPIContext context)
 {
     _context = context;
 }
예제 #13
0
 public VotesController(_8BDAPIContext context, CommonHelper common)
 {
     _context = context;
     _common  = common;
 }