public RechargeController(
     IRechargeRecordService rechargeRecordService
     , ICustomerAmountService customerAmountService
     , ICustomerService customerService)
 {
     this.rechargeRecordService = rechargeRecordService;
     this.customerAmountService = customerAmountService;
     this.customerService       = customerService;
 }
Beispiel #2
0
 public MemberController(IMemberService memberService, ILoginCodeService loginCodeService, IExchangeService exchangeService, IRechargeRecordService rechargeRecordService,
                         ICooperationService cooperationService, IRefundService refundService, ICosFileStatService cosFileStatService)
 {
     _memberService         = memberService;
     _loginCodeService      = loginCodeService;
     _exchangeService       = exchangeService;
     _rechargeRecordService = rechargeRecordService;
     _cooperationService    = cooperationService;
     _refundService         = refundService;
     _cosFileStatService    = cosFileStatService;
 }
Beispiel #3
0
 public AliPayController(IExchangeEventService exchangeEventService, IRechargeRecordService rechargeRecordService)
 {
     _exchangeEventService  = exchangeEventService;
     _rechargeRecordService = rechargeRecordService;
 }
 public TradeController(ICostRecordService iCostRecordService, IRechargeRecordService iPaymentRecordService, IMemberService iMemberService)
 {
     costRecordService     = iCostRecordService;
     rechargeRecordService = iPaymentRecordService;
     memberService         = iMemberService;
 }
Beispiel #5
0
 public PaymentController(IMemberService iMemberService, IRechargeRecordService iRechargeRecordService)
 {
     memberService         = iMemberService;
     rechargeRecordService = iRechargeRecordService;
 }
 public TradeController(IMemberService iMemberService, IRechargeRecordService iPaymentRecordService)
 {
     memberService        = iMemberService;
     paymentRecordService = iPaymentRecordService;
 }
 public MemberController(IMemberService iMemberService, INotificationService iNotificationService, IRechargeRecordService iRechargeRecordService)
 {
     notificationService   = iNotificationService;
     memberService         = iMemberService;
     rechargeRecordService = iRechargeRecordService;
 }