29 lines
817 B
C#
29 lines
817 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.Extensions.Logging;
|
|
using xCommons.Configurations;
|
|
using xCommons.Providers;
|
|
using xIdentityService.Controllers;
|
|
using xIdentityService.Interfaces;
|
|
|
|
namespace xApi.Base
|
|
{
|
|
[Route("api/v{version:apiVersion}/services/[controller]")]
|
|
public abstract class XIBaseV1ProviderController : XIBaseProviderController
|
|
{
|
|
//
|
|
#region Constructor ...
|
|
protected XIBaseV1ProviderController(
|
|
ILogger logger,
|
|
XAppConfiguration appConfiguration,
|
|
IXIdentityProvider identityProvider,
|
|
XValidationProvider validationProvider
|
|
) : base(
|
|
logger,
|
|
appConfiguration,
|
|
identityProvider,
|
|
validationProvider
|
|
)
|
|
{ }
|
|
#endregion
|
|
}
|
|
} |