コード例 #1
0
 public BaseRepository(IUnitWork unitWork)
 {
     _unitWork = unitWork;
     _db       = _unitWork.GetDbContext();
 }
コード例 #2
0
 public StudentScoresController(StudentScoreContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }