コード例 #1
0
 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;
 }
コード例 #2
0
 public LoadCarrierGroupController(ILoadCarrierGroupService loadCarrierGroupService, IUserContext userContext)
 {
     _loadCarrierGroupService = loadCarrierGroupService;
     _userContext             = userContext;
 }