Exemplo n.º 1
0
 public JwtAuthManager(AppSettings appSettings, IMongoUser mongoUser)
 {
     key            = appSettings.JwtKey;
     this.mongoUser = mongoUser;
 }
Exemplo n.º 2
0
 public UserController(IJwtAuthManager authManager, IMongoUser mongoUser, IMapper mapper)
 {
     this._authManager = authManager;
     this._mongoUser   = mongoUser;
     this._mapper      = mapper;
 }