using System.Reflection; using System.Threading.Tasks; using Dough.Models.Database; using Dough.Utilities; using IdentityServer4; using IdentityServer4.Models; using IdentityServer4.Services; namespace Dough.IdentityServer { public class ProfileService : IProfileService { private readonly MainDbContext _context; public ProfileService(MainDbContext context) { _context = context; } public Task GetProfileDataAsync(ProfileDataRequestContext context) { throw new System.NotImplementedException(); } public Task IsActiveAsync(IsActiveContext context) { return default; } } }