예제 #1
0
 public CustomerPaymentContractProcessor(
     ICustomerPaymentContractQueryProcessor customerPaymentContractQueryProcessor,
     IAddCustomerPaymentContractQueryProcessor addCustomerPaymentContractQueryProcessor,
     IDeleteCustomerPaymentContractQueryProcessor deleteCustomerPaymentContractQueryProcessor)
 {
     this.customerPaymentContractQueryProcessor       = customerPaymentContractQueryProcessor;
     this.addCustomerPaymentContractQueryProcessor    = addCustomerPaymentContractQueryProcessor;
     this.deleteCustomerPaymentContractQueryProcessor = deleteCustomerPaymentContractQueryProcessor;
 }
예제 #2
0
 public CollectionScheduleProcessor(
     ICollectionScheduleQueryProcessor collectionScheduleQueryProcessor,
     ICategoryByCodeQueryProcessor categoryByCodeQueryProcessor,
     ICustomerPaymentContractQueryProcessor customerPaymentContractQueryProcessor
     )
 {
     this.collectionScheduleQueryProcessor      = collectionScheduleQueryProcessor;
     this.categoryByCodeQueryProcessor          = categoryByCodeQueryProcessor;
     this.customerPaymentContractQueryProcessor = customerPaymentContractQueryProcessor;
 }