public HallRepository(IHallContext context)
 {
     _context = context;
 }
Example #2
0
 public HallLogic(IHallContext context, IMapper mapper)
 {
     Repository = new HallRepository(context);
     _mapper    = mapper;
 }