Exemplo n.º 1
0
 public AuthService(IJwtService jwtService, IUserRepository userRepository, IFacebookApiService facebookApiService, IConfiguration configuration)
 {
     _jwtService         = jwtService;
     _userRepository     = userRepository;
     _facebookApiService = facebookApiService;
     _configuration      = configuration;
 }
 public FacebookController(IFacebookApiService apiService)
 {
     _apiService = apiService;
 }