AssessmentAnywhere.Controllers.AccountController.AccountController C# (CSharp) Méthode

AccountController() public méthode

public AccountController ( IUserRepo userRepo, IAccountActivationService accountActivationService, Func accountMailer, AccountFeatures features ) : System
userRepo IUserRepo
accountActivationService IAccountActivationService
accountMailer Func
features AssessmentAnywhere.Features.AccountFeatures
Résultat System
        public AccountController(IUserRepo userRepo, IAccountActivationService accountActivationService, Func<AccountMailerController> accountMailer, AccountFeatures features)
        {
            this.userRepo = userRepo;
            this.accountActivationService = accountActivationService;
            this.accountMailer = accountMailer;
            this.features = features;
        }