public AuthenticationModel(IOptions <IdentityOptions> option, ISystemSettingsService systemSettingsService) { Title = SettingsManagementResources.Authentication_Title; Option = option; SystemSettingsService = systemSettingsService; }
public HomeController(ISystemSettingsService _systemSettingService, IAccountService _accountService, IDepositService _depositService, IMT4Service _mt4Service, IUnitOfWork _unitOfWork) { this.accountService = _accountService; this.systemSettingService = _systemSettingService; this.depositService = _depositService; this.mt4Service = _mt4Service; this.unitOfWork = _unitOfWork; }
public ForgotPasswordModel(UserManager <ApplicationUser> userManager, IEmailSender emailSender, ISystemSettingsService systemSettingsService) { _userManager = userManager; _emailSender = emailSender; SystemSettingsService = systemSettingsService; }
public VendorController(IVendorService vendorService, IDropDownSubCategoryService subCategoryService, IServiceRequestService requestService, ISystemSettingsService settingsService) { this.vendorService = vendorService; this.subCategoryService = subCategoryService; this.requestService = requestService; this.settingsService = settingsService; }
public AccountController(IUnitOfWork unitOfWork, IAccountService accountService, IMT4Service mt4service, ISystemSettingsService systemSettingService, IDepositService depositService, log4net.ILog log) { this._accountService = accountService; this._mt4Service = mt4service; this._unitOfWork = unitOfWork; this._systemSettingService = systemSettingService; this._depositService = depositService; this._log = log; }
public LoginModel(SignInManager <ApplicationUser> signInManager, ILogger <LoginModel> logger, UserManager <ApplicationUser> userManager, RoleManager <ApplicationRole> roleManager, ISystemSettingsService systemSettingsService, ITenantService tenantService) { _userManager = userManager; _roleManager = roleManager; SystemSettingsService = systemSettingsService; TenantService = tenantService; _signInManager = signInManager; _logger = logger; }
public SystemsettingsController(ISystemSettingsService systemSettingsService, IUnitOfWork unitOfwork) { this._systemSettingsService = systemSettingsService; this._unitOfWork = unitOfwork; }
public SmptSettingsModel(ISystemSettingsService systemSettingsService) { Title = SettingResources.SMTPSetting_Title; SystemSettingsService = systemSettingsService; }
public HomeController(IMT4Service mt4Service, IAccountService accountService, ISystemSettingsService SystemSettingsService) { _mt4Service = mt4Service; _accountService = accountService; _SystemSettingsService = SystemSettingsService; }
protected KatilServiceBase(ITokenService tokenService, ISystemSettingsService settingsService) { this.tokenService = tokenService; this.settingsService = settingsService; }
public ContractorRequestProcessor(IServiceRequestService requestService, ISystemSettingsService settingsService) { this.requestService = requestService; this.settingsService = settingsService; }
public EmailSender(ISystemSettingsService systemSettingsService) { SystemSettingsService = systemSettingsService; }
public FileService(ITokenService tokenService, ISystemSettingsService settingsService, IUnitOfWork unitOfWork, IBus bus) : base(tokenService, settingsService) { _unitOfWork = unitOfWork; _bus = bus; }