예제 #1
0
 public VerificationManager(RemsDbContext context,
                            IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #2
0
 public WardManager(RemsDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #3
0
 public LcdaManager(IMapper mapper, RemsDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
예제 #4
0
 public UserManager(RemsDbContext remsDbContext, IMapper mapper)
 {
     _remsDbContext = remsDbContext;
     _mapper        = mapper;
 }