Example #1
0
 public ShipStationService(IAddressService addressService,
                           ICacheManager cacheManager,
                           ICountryService countryService,
                           ICustomerService customerService,
                           ILogger logger,
                           IMeasureService measureService,
                           IOrderService orderService,
                           IProductService productService,
                           IShipmentService shipmentService,
                           IShippingService shippingService,
                           IStateProvinceService stateProvinceService,
                           IStoreContext storeContext,
                           ShipStationSettings shipStationSettings)
 {
     _addressService       = addressService;
     _cacheManager         = cacheManager;
     _countryService       = countryService;
     _customerService      = customerService;
     _logger               = logger;
     _measureService       = measureService;
     _orderService         = orderService;
     _productService       = productService;
     _shipmentService      = shipmentService;
     _shippingService      = shippingService;
     _stateProvinceService = stateProvinceService;
     _storeContext         = storeContext;
     _shipStationSettings  = shipStationSettings;
 }
 public ShipStationService(ICacheManager cacheManager,
                           ILogger logger,
                           IMeasureService measureService,
                           IOrderService orderService,
                           IShipmentService shipmentService,
                           IShippingService shippingService,
                           IStoreContext storeContext,
                           ShipStationSettings shipStationSettings)
 {
     _cacheManager        = cacheManager;
     _logger              = logger;
     _measureService      = measureService;
     _orderService        = orderService;
     _shipmentService     = shipmentService;
     _shippingService     = shippingService;
     _storeContext        = storeContext;
     _shipStationSettings = shipStationSettings;
 }