public AuthenticationController(IAuthenticationService authenticationService, IEmailService emailService, IAuthenticationRepository authenticationRepository, IUserRepository userRepository, ILoggingService loggingService, IConfiguration configuration, DyadAppContext context)
 {
     _authenticationService    = authenticationService;
     _emailService             = emailService;
     _authenticationRepository = authenticationRepository;
     _userRepository           = userRepository;
     _loggingService           = loggingService;
     _configuration            = configuration;
     _context = context;
 }
示例#2
0
 public ChatRepository(DyadAppContext context)
 {
     _context = context;
 }
 public MatchRepository(DyadAppContext context)
 {
     _context = context;
 }
 public AuthenticationRepository(DyadAppContext context)
 {
     _context = context;
 }
 public UserRepository(DyadAppContext context)
 {
     _context = context;
 }
示例#6
0
 public AuditLogRepository(DyadAppContext context)
 {
     _context = context;
 }