Пример #1
0
        public AuthenticationModel(IOptions <IdentityOptions> option, ISystemSettingsService systemSettingsService)
        {
            Title = SettingsManagementResources.Authentication_Title;

            Option = option;
            SystemSettingsService = systemSettingsService;
        }
Пример #2
0
 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;
 }
Пример #3
0
 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;
 }
Пример #5
0
 public VendorController(IVendorService vendorService,
                         IDropDownSubCategoryService subCategoryService,
                         IServiceRequestService requestService, ISystemSettingsService settingsService)
 {
     this.vendorService      = vendorService;
     this.subCategoryService = subCategoryService;
     this.requestService     = requestService;
     this.settingsService    = settingsService;
 }
Пример #6
0
 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;
 }
Пример #7
0
 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;
        }
Пример #10
0
 public HomeController(IMT4Service mt4Service, IAccountService accountService, ISystemSettingsService SystemSettingsService)
 {
     _mt4Service = mt4Service;
     _accountService = accountService;
     _SystemSettingsService = SystemSettingsService;
 }
Пример #11
0
 public HomeController(IMT4Service mt4Service, IAccountService accountService, ISystemSettingsService SystemSettingsService)
 {
     _mt4Service            = mt4Service;
     _accountService        = accountService;
     _SystemSettingsService = SystemSettingsService;
 }
Пример #12
0
 protected KatilServiceBase(ITokenService tokenService, ISystemSettingsService settingsService)
 {
     this.tokenService    = tokenService;
     this.settingsService = settingsService;
 }
Пример #13
0
 public SystemsettingsController(ISystemSettingsService systemSettingsService, IUnitOfWork unitOfwork)
 {
     this._systemSettingsService = systemSettingsService;
     this._unitOfWork            = unitOfwork;
 }
 public ContractorRequestProcessor(IServiceRequestService requestService, ISystemSettingsService settingsService)
 {
     this.requestService  = requestService;
     this.settingsService = settingsService;
 }
Пример #15
0
 public EmailSender(ISystemSettingsService systemSettingsService)
 {
     SystemSettingsService = systemSettingsService;
 }
Пример #16
0
 public FileService(ITokenService tokenService, ISystemSettingsService settingsService, IUnitOfWork unitOfWork, IBus bus)
     : base(tokenService, settingsService)
 {
     _unitOfWork = unitOfWork;
     _bus        = bus;
 }