public CustomerController( ICustomerService customerService , ICustomerAmountService customerAmountService , IConsumeRecordService consumeRecordService) { this.customerService = customerService; this.customerAmountService = customerAmountService; this.consumeRecordService = consumeRecordService; }
public RechargeController( IRechargeRecordService rechargeRecordService , ICustomerAmountService customerAmountService , ICustomerService customerService) { this.rechargeRecordService = rechargeRecordService; this.customerAmountService = customerAmountService; this.customerService = customerService; }