using Microsoft.AspNetCore.Authorization; using Microsoft.Extensions.Logging; using xCommons.Attributes; using xCommons.Configurations; using xCommons.Providers; using xIdentityService.Interfaces; namespace xIdentityService.Controllers { [Authorize] [RequireXPowered(false)] public abstract class XIBaseProviderController : XIBaseController { protected XIBaseProviderController( ILogger logger, XAppConfiguration appConfiguration, IXIdentityProvider identityProvider, XValidationProvider validationProvider ) : base( logger, appConfiguration, identityProvider, validationProvider ) { } } }