public ScreeningRepository(IScreeningContext context)
 {
     _context = context;
 }
Example #2
0
 public ScreeningRepo(IScreeningContext context)
 {
     this._context = context;
 }
 public ScreeningLogic(IScreeningContext context, IMapper mapper)
 {
     Repository = new ScreeningRepository(context);
     _mapper    = mapper;
 }