public PlacesController(DireoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #2
0
 public Auth(DireoContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public AuthController(DireoContext context, IConfiguration configuration, IMapper mapper)
 {
     _context       = context;
     _configuration = configuration;
     _mapper        = mapper;
 }
Beispiel #4
0
 public UsersController(DireoContext context)
 {
     _context = context;
 }