Example #1
0
 public AdvisorsController(IAccountRoleService accountRoleService, IAccountService accountService, IRoleService roleService, IMapper mapper, IAdvisorService advisorService)
 {
     _accountRoleService = accountRoleService;
     _accountService     = accountService;
     _roleService        = roleService;
     _mapper             = mapper;
     _advisorSerivce     = advisorService;
 }
Example #2
0
 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;
 }
Example #3
0
 public AdvisorsController(IAdvisorService advisorService, IMapper mapper)
 {
     _advisorService = advisorService;
     _mapper         = mapper;
 }
Example #4
0
 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;
 }