예제 #1
0
 public UsersController(HouseRentContext context, EmailService emailService, IConfiguration config)
 {
     _context      = context;
     _emailService = emailService;
     _config       = config;
 }
예제 #2
0
 public AdvertisesController(HouseRentContext context, EmailService emailService, IConfiguration config)
 {
     _context      = context;
     _config       = config;
     _emailService = emailService;
 }
예제 #3
0
 public UsersController(HouseRentContext context)
 {
     _context = context;
 }
 public AdvertisesController(HouseRentContext context)
 {
     _context = context;
 }