public BoardsController(KardexContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
示例#2
0
 public UserServices(KardexContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public UserCreateValidator(KardexContext context, UserDTO user)
 {
     _context = context;
     _user    = user;
 }
 public CardListsController(KardexContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }