예제 #1
0
 /// <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;
 }
예제 #2
0
        /// <summary>
        /// 账单管理初始化
        /// </summary>
        /// <param name="productService">productService</param>
        /// <param name="orderDetailService">orderDetailService</param>
        /// <param name="orderService">orderService</param>
        /// <param name="brokerService"></param>
        /// <param name="agentBillService">agentBillService</param>
        /// <param name="cfbBillService">CFBBillService</param>
        /// <param name="partnerlistService"></param>
        /// <param name="workContext"></param>
        /// <param name="landAgentBillService">landAgentBillService</param>
        /// <param name="commissionRatioService"></param>
        /// <param name="brokeAccountService"></param>
        public BillController(
                IProductService productService,
                IOrderDetailService orderDetailService,
                IOrderService orderService,
            IBrokerService brokerService,
            IAgentBillService agentBillService,
            ICFBBillService cfbBillService,
            IPartnerListService partnerlistService,
            IWorkContext workContext,
            ILandAgentBillService landAgentBillService,
            ICommissionRatioService commissionRatioService, IBrokeAccountService brokeAccountService)
        {
            _productService = productService;
            _orderDetailService = orderDetailService;
            _orderService = orderService;
            _brokerService = brokerService;
            _agentBillService = agentBillService;
            _CFBBillService = cfbBillService;
            _partnerlistService = partnerlistService;
            _workContext = workContext;
            _landAgentBillService = landAgentBillService;
            _commissionRatioService = commissionRatioService;
            _brokeAccountService = brokeAccountService;

        }
예제 #3
0
 /// <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;
 }
예제 #4
0
 /// <summary>
 /// 账单管理初始化
 /// </summary>
 /// <param name="productService">productService</param>
 /// <param name="orderDetailService">orderDetailService</param>
 /// <param name="orderService">orderService</param>
 /// <param name="brokerService"></param>
 /// <param name="agentBillService">agentBillService</param>
 /// <param name="cfbBillService">CFBBillService</param>
 /// <param name="partnerlistService"></param>
 /// <param name="workContext"></param>
 /// <param name="landAgentBillService">landAgentBillService</param>
 /// <param name="commissionRatioService"></param>
 /// <param name="brokeAccountService"></param>
 public BillController(
     IProductService productService,
     IOrderDetailService orderDetailService,
     IOrderService orderService,
     IBrokerService brokerService,
     IAgentBillService agentBillService,
     ICFBBillService cfbBillService,
     IPartnerListService partnerlistService,
     IWorkContext workContext,
     ILandAgentBillService landAgentBillService,
     ICommissionRatioService commissionRatioService, IBrokeAccountService brokeAccountService)
 {
     _productService         = productService;
     _orderDetailService     = orderDetailService;
     _orderService           = orderService;
     _brokerService          = brokerService;
     _agentBillService       = agentBillService;
     _CFBBillService         = cfbBillService;
     _partnerlistService     = partnerlistService;
     _workContext            = workContext;
     _landAgentBillService   = landAgentBillService;
     _commissionRatioService = commissionRatioService;
     _brokeAccountService    = brokeAccountService;
 }
예제 #5
0
 /// <summary>
 /// 合伙人管理类初始化
 /// </summary>
 /// <param name="partnerlistService">partnerlistService</param>
 /// <param name="brokerService">brokerService</param>
 /// <param name="workContext">workContext</param>
 public PartnerListController(IPartnerListService partnerlistService, IBrokerService brokerService, IWorkContext workContext)
 {
     _partnerlistService = partnerlistService;
     _brokerService = brokerService;
     _workContext = workContext;
 }