示例#1
0
 public ChangePayService(CHISEntitiesSqlServer db,
                         DispensingService dispensingSvr,
                         IHostingEnvironment env
                         , CustomerService cusSvr
                         , PointsDetailService pointsService
                         , TreatService treatSvr
                         , AccessService accSvr
                         , DispensingService dispSvr
                         , Codes.Utility.XPay.AliPay aliPay
                         , WeChatService weChatSvr
                         , Code.Managers.IMyLogger logger
                         , IHttpContextAccessor httpContextAccessor
                         ) : base(db)
 {
     _dispensingSvr       = dispensingSvr;
     _env                 = env;
     _cusSvr              = cusSvr;
     _pointsService       = pointsService;
     _treatSvr            = treatSvr;
     _accSvr              = accSvr;
     this._logger         = logger;
     _aliPay              = aliPay;
     _weChatSvr           = weChatSvr;
     _httpContextAccessor = httpContextAccessor;
 }
示例#2
0
 public GiftOrderService(CHISEntitiesSqlServer db, IMapper mapper, WeChatService weChatService) : base(db)
 {
     _mapper        = mapper;
     _weChatService = weChatService;
 }