public AdvisorsController(IAccountRoleService accountRoleService, IAccountService accountService, IRoleService roleService, IMapper mapper, IAdvisorService advisorService) { _accountRoleService = accountRoleService; _accountService = accountService; _roleService = roleService; _mapper = mapper; _advisorSerivce = advisorService; }
public AccountsController(IAccountService accountservice, IRoleService roleservice, IAccountRoleService acountroleservice, IConfiguration config, IMapper mapper, IAdvisorService advisorService, IAgencyService agencyService, IVerifierService verifierService, IUserService userService, IEmailSender emailSender, ICompanyService companyService, ICustomerService customerService) { this._accountservice = accountservice; this._roleservice = roleservice; this._accountroleservice = acountroleservice; this._config = config; this._mapper = mapper; this._advisorService = advisorService; this._agencyService = agencyService; this._verifierService = verifierService; this._userService = userService; this._emailSender = emailSender; this._companyService = companyService; this._customerService = customerService; }
public AdvisorsController(IAdvisorService advisorService, IMapper mapper) { _advisorService = advisorService; _mapper = mapper; }
public StrategyService(IAdvisorService advisorService, Client config) { this.advisorService = advisorService; this.config = config; this.quik = new Quik(config.Port == 0 ? Quik.DefaultPort : config.Port, new InMemoryStorage()); }
public AdvisorController(IAdvisorService advisorService) { _advisorService = advisorService; }