Ejemplo n.º 1
0
 public HallRepository(IHallContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public HallLogic(IHallContext context, IMapper mapper)
 {
     Repository = new HallRepository(context);
     _mapper    = mapper;
 }