You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.3 KiB

6 months ago
  1. using Microsoft.AspNetCore.Authentication;
  2. using Microsoft.AspNetCore.Http;
  3. using Microsoft.AspNetCore.Identity;
  4. using OpenIddict.Abstractions;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Security.Claims;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using Volo.Abp;
  12. using Volo.Abp.Application.Services;
  13. using Volo.Abp.Domain.Repositories;
  14. using Volo.Abp.Identity;
  15. namespace Shentun.Peis.ThirdUsers
  16. {
  17. public class ThirdUserAppService : ApplicationService
  18. {
  19. //private readonly IOpenIddictScopeManager _scopeManager;
  20. //private readonly SignInManager<IdentityUser> _signInManager;
  21. //private readonly IRepository<IdentityUser,Guid> _identityUserRepository;
  22. //private readonly IdentityUserManager _identityUserManager;
  23. //public ThirdUserAppService(
  24. // IOpenIddictScopeManager scopeManager,
  25. // SignInManager<IdentityUser> signInManager,
  26. // IRepository<IdentityUser, Guid> identityUserRepository,
  27. // IdentityUserManager identityUserManager)
  28. //{
  29. // _scopeManager = scopeManager;
  30. // _signInManager = signInManager;
  31. // _identityUserRepository = identityUserRepository;
  32. // _identityUserManager = identityUserManager;
  33. //}
  34. }
  35. }