public CampUsersController(campsContext context, IEmailSender emailSender)
 {
     _context     = context;
     _emailSender = emailSender;
 }
 public EventsController(campsContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public UsersController(campsContext context, IUserService userService, IHashingService hashingService)
 {
     _context        = context;
     _userService    = userService;
     _hashingService = hashingService;
 }
Exemplo n.º 4
0
 public UserService(IOptions <AppSettings> appsettings, campsContext context, IHashingService hashingService)
 {
     _context        = context;
     _appSettings    = appsettings.Value;
     _hashingService = hashingService;
 }
 public CampsController(campsContext context)
 {
     _context = context;
 }
 public SpeakersController(campsContext context)
 {
     _context = context;
 }