public SmartSpotPriceService(SmartSpotPriceConfig config, LoadshopDataContext context, IMapper mapper, HttpClient httpClient, IUserContext userContext, IRecaptchaService recaptchaService, IMileageService mileageService, ISecurityService securityService, ILoadCarrierGroupService loadCarrierGroupService, IShippingService shippingService) { _config = config; _db = context; _mapper = mapper; _httpClient = httpClient; _userContext = userContext; _recaptchaService = recaptchaService; _mileageService = mileageService; _securityService = securityService; _loadCarrierGroupService = loadCarrierGroupService; _shippingService = shippingService; }
public LoadCarrierGroupController(ILoadCarrierGroupService loadCarrierGroupService, IUserContext userContext) { _loadCarrierGroupService = loadCarrierGroupService; _userContext = userContext; }