Exemplo n.º 1
0
 public CustomerController(ICustomerService customerService, IFeeManageService feeManageService, IFreightService freightService,
                           IOperateLogServices operateLogServices, IWorkContext workContext, ICustomerSourceInfoRepository customerSourceInfoRepository
                           )
 {
     _customerService              = customerService;
     _feeManageService             = feeManageService;
     _freightService               = freightService;
     _operateLogServices           = operateLogServices;
     _workContext                  = workContext;
     _customerSourceInfoRepository = customerSourceInfoRepository;
 }
Exemplo n.º 2
0
 public LmsController(IReturnGoodsService returnGoodsService,
                      IUserService userService,
                      IWorkContext workContext,
                      IFeeManageService feeManageService,
                      IAuthenticationService authenticationService,
                      IFinancialService financialService)
 {
     _returnGoodsService    = returnGoodsService;
     _userService           = userService;
     _workContext           = workContext;
     _feeManageService      = feeManageService;
     _authenticationService = authenticationService;
     _financialService      = financialService;
 }
Exemplo n.º 3
0
 public BillingController(IBillingService billingService,
                          ICustomerService customerService,
                          IFreightService freightService,
                          IFeeManageService feeManageService,
                          ICountryService countryService,
                          IGoodsTypeService goodsTypeService,
                          IWorkContext workContext)
 {
     _billingService   = billingService;
     _feeManageService = feeManageService;
     _goodsTypeService = goodsTypeService;
     _countryService   = countryService;
     _workContext      = workContext;
     _freightService   = freightService;
     _customerService  = customerService;
 }
Exemplo n.º 4
0
 public OrdersController(ICustomerService customerService, IFeeManageService feeManageService)
 {
     _feeManageService = feeManageService;
     _customerService  = customerService;
 }
 public FeeManageController(IFeeManageService feeManageService)
 {
     _feeManageService = feeManageService;
 }