public UsersController(IAuthnManager authnManager)
 {
     _authnManager = authnManager;
 }
 public TaskUserController(IRepository repository, IAuthnManager authnManager)
 {
     _repository   = repository;
     _authnManager = authnManager;
 }