Exemplo n.º 1
0
 public ParticipationController(PubeoAPIdbContext context, IMapper mapper)
 {
     _context    = context;
     this.mapper = mapper;
 }
Exemplo n.º 2
0
 public LocaliteController(PubeoAPIdbContext context, ILocalRepository localRepo)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public JwtController(IOptions <JwtIssuerOptions> jwtOptions, PubeoAPIdbContext context)
 {
     _jwtOptions = jwtOptions.Value;
     _context    = context;
 }
Exemplo n.º 4
0
 public ProfessionnelsController(PubeoAPIdbContext context, IMapper mapper)
 {
     _context    = context;
     this.mapper = mapper;
 }