示例#1
0
 public AutorizacionController(LoginServiceContext context, IUserService userService, IMapper mapper, IMailService mailService)
 {
     _context     = context;
     _userService = userService;
     _mapper      = mapper;
     _mailService = mailService;
 }
示例#2
0
 public MailController(LoginServiceContext context, ILogger <MailController> logger, IgoogleMailService mailService, IConfiguration configuration)
 {
     _context       = context;
     _logger        = logger;
     _mailService   = mailService;
     _configuration = configuration;
 }
 public UserService(IOptions <AppSettings> appSettings, LoginServiceContext context, IMapper mapper)
 {
     _appSettings = appSettings.Value;
     _context     = context;
     _mapper      = mapper;
 }
示例#4
0
 public UsuarioController(LoginServiceContext context, IMapper mapper, ILogger <UsuarioController> logger, IMailService mailService)
 {
     _context     = context;
     _mapper      = mapper;
     _mailService = mailService;
 }
 public UsuarioQueryController(LoginServiceContext context, IMapper mapper, ILogger <UsuarioController> logger)
 {
     _context = context;
     _mapper  = mapper;
 }