Exemplo n.º 1
0
 public UserService(postgresContext context)
 {
     db = context;
 }
Exemplo n.º 2
0
 public UsersController(UserService userService, IJwtAuthenticationManager JwtAuthentiocationManager, postgresContext context)
 {
     _userService = userService;
     this.JwtAuthentiocationManager = JwtAuthentiocationManager;
     db = context;
 }