public AllTicketController(IKalahariTicketsInterface repo, IMapper mapper, DataContext context)
 {
     _context = context;
     _mapper  = mapper;
     _repo    = repo;
 }
Exemplo n.º 2
0
 public ClientsController(IKalahariTicketsInterface repo, IMapper mapper)
 {
     _mapper = mapper;
     _repo   = repo;
 }
Exemplo n.º 3
0
 public TechnitionController(IKalahariTicketsInterface repo, IMapper mapper)
 {
     _mapper = mapper;
     _repo   = repo;
 }