예제 #1
0
 public PlacesController(DireoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #2
0
파일: Auth.cs 프로젝트: EAghayev/DireoApi
 public Auth(DireoContext context)
 {
     _context = context;
 }
예제 #3
0
 public AuthController(DireoContext context, IConfiguration configuration, IMapper mapper)
 {
     _context       = context;
     _configuration = configuration;
     _mapper        = mapper;
 }
예제 #4
0
 public UsersController(DireoContext context)
 {
     _context = context;
 }