public TasksController(ITaskRepository repo, IMapper mapper, IAlertRepository alertRepository, IReactCrashUserRepository userRepository)
 {
     _repo      = repo;
     _mapper    = mapper;
     _alertRepo = alertRepository;
     _userRepo  = userRepository;
 }
 public UsersController(IReactCrashUserRepository reactCrashUserRepository, UserManager <reactCrashUser> userManager, SignInManager <reactCrashUser> signInManager, IMapper mapper, IAuthService authService)
 {
     _userManager              = userManager;
     _mapper                   = mapper;
     _signInManager            = signInManager;
     _authService              = authService;
     _reactCrashUserRepository = reactCrashUserRepository;
     //_jwtAuthenticationManager = jwtAuthenticationManager;
 }