コード例 #1
0
 public BoardsController(KardexContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #2
0
 public UserServices(KardexContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #3
0
 public UserCreateValidator(KardexContext context, UserDTO user)
 {
     _context = context;
     _user    = user;
 }
コード例 #4
0
 public CardListsController(KardexContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }