コード例 #1
0
 public ScreeningRepository(IScreeningContext context)
 {
     _context = context;
 }
コード例 #2
0
ファイル: ScreeningRepo.cs プロジェクト: Deadelous/HEST
 public ScreeningRepo(IScreeningContext context)
 {
     this._context = context;
 }
コード例 #3
0
 public ScreeningLogic(IScreeningContext context, IMapper mapper)
 {
     Repository = new ScreeningRepository(context);
     _mapper    = mapper;
 }