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; }
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; }
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; }
public OrdersController(ICustomerService customerService, IFeeManageService feeManageService) { _feeManageService = feeManageService; _customerService = customerService; }
public FeeManageController(IFeeManageService feeManageService) { _feeManageService = feeManageService; }