33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.Extensions.Logging;
|
|
using xCommons.Configurations;
|
|
using xCommons.Providers;
|
|
using xIdentityService.Interfaces;
|
|
using xStringService.Controllers;
|
|
using xTermsAndConditionsService.Interfaces;
|
|
|
|
namespace xTermsAndConditionsService.Controllers
|
|
{
|
|
/// <summary>
|
|
/// a Base Controller Implementation for Providing Base Actions of
|
|
/// Terms and Conditions Provided Actions ...
|
|
/// </summary>
|
|
[AllowAnonymous]
|
|
public abstract class XTermsAndConditionsControllerBase : XBaseResourceProviderControllerBase<IXTermsAndConditionsProvider>, IXTermsAndConditionsController
|
|
{
|
|
protected XTermsAndConditionsControllerBase(
|
|
ILogger<XTermsAndConditionsControllerBase> logger,
|
|
XAppConfiguration appConfiguration,
|
|
IXIdentityProvider identityProvider,
|
|
XValidationProvider validationProvider,
|
|
IXTermsAndConditionsProvider provider
|
|
) : base(
|
|
logger,
|
|
appConfiguration,
|
|
identityProvider,
|
|
validationProvider,
|
|
provider
|
|
)
|
|
{ }
|
|
}
|
|
} |