Files
xIdentityService/Controllers/XIBaseProviderController.cs
T
2025-11-05 16:17:42 +03:30

27 lines
738 B
C#

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
)
{ }
}
}