You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
716 B
22 lines
716 B
using Application.Domain.Entities;
|
|
using Infrastructure.Data;
|
|
using Infrastructure.Email;
|
|
using Infrastructure.Resources;
|
|
using Infrastructure.Security;
|
|
using IoT.UI.Shard.Controllers;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Localization;
|
|
|
|
namespace FBeeService.Controllers
|
|
{
|
|
public class AccountController : BaseAccountController
|
|
{
|
|
public AccountController(IConfiguration configuration,
|
|
IRepository<User> userRepo,
|
|
IEncryptionService encryptionService,
|
|
IStringLocalizer<Resource> localizer,
|
|
IEmailSender emaliSender) : base(configuration, userRepo, encryptionService, localizer, emaliSender)
|
|
{
|
|
}
|
|
}
|
|
} |