public ShiprocketOrderController(
     IPermissionService permissionService,
     IShipRocketService shipRocketService)
 {
     _permissionService = permissionService;
     _shipRocketService = shipRocketService;
 }
Beispiel #2
0
 public OrderPaidsEvent(
     IShipRocketService ShipRocketService,
     ISettingService settingService,
     IStoreContext storeContext)
 {
     this._ShipRocketService = ShipRocketService;
     this._settingService    = settingService;
     this._storeContext      = storeContext;
 }
 public ShipRocketOrderTask(ILogger LoggerService,
                            IOrderService OrderService,
                            IShipRocketService ShipRocketService,
                            ShipRocketSetting shiprocketsetting,
                            IShipRocketMessageService ShipRocketMessageService,
                            IAddressService addressService,
                            ICountryService countryService,
                            IStateProvinceService stateProvinceService,
                            IRepository <OrderNote> orderNoteRepository,
                            ISettingService settingService,
                            IStoreContext storeContext)
 {
     this._LoggerService            = LoggerService;
     this._OrderService             = OrderService;
     this._ShipRocketService        = ShipRocketService;
     this._ShipRocketSeting         = shiprocketsetting;
     this._ShipRocketMessageService = ShipRocketMessageService;
     this._addressService           = addressService;
     this._countryService           = countryService;
     this._stateProvinceService     = stateProvinceService;
     this._orderNoteRepository      = orderNoteRepository;
     this._settingService           = settingService;
     this._storeContext             = storeContext;
 }