/// <summary> /// 经纪人管理初始化 /// </summary> /// <param name="clientInfoService">clientInfoService</param> /// <param name="workContext">workContext</param> /// <param name="brokerService">brokerService</param> /// <param name="partnerlistService">partnerlistService</param> /// <param name="recommendagentService">recommendagentService</param> /// <param name="roleService">roleService</param> /// <param name="MessageService">MessageService</param> /// <param name="userService">userService</param> public BrokerInfoController(IClientInfoService clientInfoService, IWorkContext workContext, IBrokerService brokerService, IPartnerListService partnerlistService, IRecommendAgentService recommendagentService, IRoleService roleService, IMessageDetailService MessageService, IUserService userService, IBrokeAccountService brokerAccountService, IEventOrderService eventOrderService, IInviteCodeService inviteCodeService, ILevelService levelService, IAgentBillService agentBillService, IEventService eventService ) { _clientInfoService = clientInfoService; _workContext = workContext; _brokerService = brokerService; _partnerlistService = partnerlistService; _recommendagentService = recommendagentService; _roleService = roleService; _MessageService = MessageService; _userService = userService; _brokerAccountService = brokerAccountService; _eventOrderService = eventOrderService; _inviteCodeService = inviteCodeService; _levelService = levelService; _agentBillService = agentBillService; _eventService = eventService; }
public RegisterClientAction(IOAuthEventSource oauthEventSource, IClientRepository clientRepository, IGenerateClientFromRegistrationRequest generateClientFromRegistrationRequest, IClientPasswordService clientPasswordService, IClientInfoService clientInfoService) { _oauthEventSource = oauthEventSource; _clientRepository = clientRepository; _generateClientFromRegistrationRequest = generateClientFromRegistrationRequest; _clientPasswordService = clientPasswordService; _clientInfoService = clientInfoService; }
public ClientInfoController( IClientInfoService clientInfoService, IBrokerService brokerService, IBrokerRECClientService brokerRecClientService, IBrokerLeadClientService brokerLeadClientService, IWorkContext workContext ) { _clientInfoService = clientInfoService; _brokerService = brokerService; _brokerRecClientService = brokerRecClientService; _brokerLeadClientService = brokerLeadClientService; _workContext = workContext; }
/// <summary> /// 经纪人带客初始化 /// </summary> /// <param name="brokerleadclientService">brokerleadclientService</param> /// <param name="brokerService">brokerService</param> /// <param name="clientInfoService">clientInfoService</param> /// <param name="workContext">workContext</param> /// <param name="orderService">orderService</param> /// <param name="productService">productService</param> /// <param name="orderDetailService">orderDetailService</param> public BrokerLeadClientController( IBrokerLeadClientService brokerleadclientService, IBrokerService brokerService, IClientInfoService clientInfoService, IWorkContext workContext, IOrderService orderService, IProductService productService, IOrderDetailService orderDetailService ) { _brokerleadclientService = brokerleadclientService; _brokerService = brokerService; _clientInfoService = clientInfoService; _workContext = workContext; _orderService = orderService; _productService = productService; _orderDetailService = orderDetailService; }
public ClientInfoController(IClientInfoService iClientInfoService) { this._iClientInfoService = iClientInfoService; }
public ReturnLinkViewComponent(IClientInfoService clientInfoService) { _clientInfoService = clientInfoService; }