public CustomerImportController(IRequestInfoService info, ICustomerImportApplication customerImportApp, ICustomerImportResetPasswordTokenApplication resetPasswordTokenApp) : base(info) { this.customerImportApp = customerImportApp; this.resetPasswordTokenApp = resetPasswordTokenApp; }
public AccountController( IRequestInfoService info, IStoreApplication storeApp, IApplicationStoreApplication appStoreApp, ITransferTokenApplication transferTokenApp, IAccountResetPasswordTokenApplication resetPasswordTokenApp, IResetSMSTokenApplication resetSMSTokenApplication, IAccountApplication accountApp) : base(info) { this.accountApp = accountApp; this.storeApp = storeApp; this.appStoreApp = appStoreApp; this.transferTokenApp = transferTokenApp; this.resetPasswordTokenApp = resetPasswordTokenApp; this.resetSMSTokenApplication = resetSMSTokenApplication; }