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

using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Identity;
using OpenIddict.Abstractions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp;
using Volo.Abp.Application.Services;
using Volo.Abp.Domain.Repositories;
using Volo.Abp.Identity;
namespace Shentun.Peis.ThirdUsers
{
public class ThirdUserAppService : ApplicationService
{
//private readonly IOpenIddictScopeManager _scopeManager;
//private readonly SignInManager<IdentityUser> _signInManager;
//private readonly IRepository<IdentityUser,Guid> _identityUserRepository;
//private readonly IdentityUserManager _identityUserManager;
//public ThirdUserAppService(
// IOpenIddictScopeManager scopeManager,
// SignInManager<IdentityUser> signInManager,
// IRepository<IdentityUser, Guid> identityUserRepository,
// IdentityUserManager identityUserManager)
//{
// _scopeManager = scopeManager;
// _signInManager = signInManager;
// _identityUserRepository = identityUserRepository;
// _identityUserManager = identityUserManager;
//}
}
}