30 lines
789 B
C#
30 lines
789 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
using xCommons.Configurations;
|
|
using xCommons.Providers;
|
|
using xIds.Controllers.Base;
|
|
using xIds.Interfaces;
|
|
|
|
namespace xIds.Controllers
|
|
{
|
|
/// <summary>
|
|
/// Provide all available tools for manipulating users and accounts
|
|
/// </summary>
|
|
[ApiController]
|
|
public partial class AccountController : XIBaseController
|
|
{
|
|
|
|
public AccountController(
|
|
IXIdentityManager identityManager,
|
|
ILogger<AccountController> logger,
|
|
XAppConfiguration appConfiguration,
|
|
XValidationProvider validationProvider
|
|
) : base(
|
|
logger,
|
|
appConfiguration,
|
|
identityManager,
|
|
validationProvider
|
|
)
|
|
{ }
|
|
}
|
|
} |