예제 #1
0
 public MyController(KSContext _db)
 {
     db = _db;
 }
예제 #2
0
 public RegisterUserCreateReceiver(KSContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #3
0
 //相依性注入DB
 public ApiController(KSContext _db)
 {
     this.db = _db;
 }
예제 #4
0
 public ExistingUserReceiver(KSContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #5
0
 public LoginUserReceiver(KSContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }