Ejemplo n.º 1
0
 public AuthenticationController(IAuthenticationService authenticationService, CustomIDataProtection protector)
 {
     _authenticationService = authenticationService;
     _protector             = protector;
 }
Ejemplo n.º 2
0
 public UserTicketController(ITicketService ticketService, IUserTicketService userTicketService, IUserService userService, IEmailService emailService, CustomIDataProtection protector)
 {
     _ticketService     = ticketService;
     _userTicketService = userTicketService;
     _userService       = userService;
     _emailService      = emailService;
     _protector         = protector;
 }
Ejemplo n.º 3
0
 public UserController(IUserService userService, IEmailService emailService, IMapper mapper, IRoleService roleService, CustomIDataProtection protector)
 {
     _userService  = userService;
     _emailService = emailService;
     _mapper       = mapper;
     _roleService  = roleService;
     _protector    = protector;
 }
Ejemplo n.º 4
0
 public HomeController(ITicketService ticketService, IUserService userService, CustomIDataProtection protector)
 {
     _ticketService = ticketService;
     _userService   = userService;
     _protector     = protector;
 }
 public UserTicketRepository(DatabaseContext context, CustomIDataProtection protector)
 {
     _context   = context;
     _protector = protector;
 }