예제 #1
0
 public CustomerController(
     ICustomerService customerService
     , IConsumeRecordService consumeRecordService)
 {
     this.customerService      = customerService;
     this.consumeRecordService = consumeRecordService;
 }
예제 #2
0
 public ConsumeRecordController(IConsumeRecordService consumeRecordService)
 {
     this.consumeRecordService = consumeRecordService;
 }