Пример #1
0
 public AuthenticationController(IMapper mapper, IUserIntegration userIntegration, UserManager userManager) : base(mapper, userIntegration)
 {
     this.userManager = userManager;
 }
Пример #2
0
 protected BaseController(IMapper mapper, IUserIntegration usuarioIntegration)
 {
     userService = usuarioIntegration;
     Mapper      = mapper;
 }
Пример #3
0
 public UserManager(IUserIntegration usuarioIntegration, IMapper mapper)
 {
     _usuarioIntegration = usuarioIntegration;
     _mapper             = mapper;
 }
Пример #4
0
 public HomeController(IMapper mapper, IUserIntegration userIntegration) : base(mapper, userIntegration)
 {
 }