28 lines
927 B
C#
28 lines
927 B
C#
using Microsoft.Extensions.Logging;
|
|
using xCommons.Configurations;
|
|
using xCommons.Providers;
|
|
using xIdentityService.Interfaces;
|
|
using xTermsAndConditionsService.Controllers;
|
|
using xTermsAndConditionsService.Interfaces;
|
|
using xTermsAndConditionsService.Providers;
|
|
|
|
namespace xServices.Controllers
|
|
{
|
|
public class XTermsAndConditionsProviderController : XTermsAndConditionsControllerBase, IXTermsAndConditionsController
|
|
{
|
|
public XTermsAndConditionsProviderController(
|
|
ILogger<XTermsAndConditionsProviderController> logger,
|
|
XAppConfiguration appConfiguration,
|
|
IXIdentityProvider identityProvider,
|
|
XValidationProvider validationProvider,
|
|
IXTermsAndConditionsProvider provider
|
|
) : base(
|
|
logger,
|
|
appConfiguration,
|
|
identityProvider,
|
|
validationProvider,
|
|
provider
|
|
)
|
|
{ }
|
|
}
|
|
} |