Esempio n. 1
0
 public ReminderProcessor(
     IReminderQueryProcessor reminderQueryProcessor,
     IAddReminderQueryProcessor addReminderQueryProcessor,
     IUpdateReminderQueryProcessor updateReminderQueryProcessor,
     IByCompanyGetEntitiesQueryProcessor <ReminderCommonSetting> getReminderCommonSettingQueryProcessor,
     IUpdateBillingReminderQueryProcessor updateBillingReminderQueryProcessor,
     IReminderSummarySettingQueryProcessor reminderSummarySettingQueryProcessor,
     IStatusQueryProcessor statusQueryProcessor,
     IAddReminderHistoryQueryProcessor addReminderHistoryQueryProcessor,
     IReminderOutputedQueryProcessor reminderOutputedQueryProcessor,
     IDeleteIdenticalEntityQueryProcessor <Reminder> deleteReminderQueryProcessor,
     IDeleteReminderHistoryQueryProcessor deleteReminderHistoryQueryProcessor,
     IDeleteReminderSummaryQueryProcessor deleteReminderSummaryQueryProcessor,
     IReminderOutputedExistsQueryProcessor reminderOutputedExistsQueryProcessor,
     IByCompanyExistQueryProcessor <Reminder> reminderByCompanyExistQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.reminderQueryProcessor                 = reminderQueryProcessor;
     this.addReminderQueryProcessor              = addReminderQueryProcessor;
     this.updateReminderQueryProcessor           = updateReminderQueryProcessor;
     this.getReminderCommonSettingQueryProcessor = getReminderCommonSettingQueryProcessor;
     this.updateBillingReminderQueryProcessor    = updateBillingReminderQueryProcessor;
     this.reminderSummarySettingQueryProcessor   = reminderSummarySettingQueryProcessor;
     this.statusQueryProcessor                 = statusQueryProcessor;
     this.addReminderHistoryQueryProcessor     = addReminderHistoryQueryProcessor;
     this.reminderOutputedQueryProcessor       = reminderOutputedQueryProcessor;
     this.deleteReminderQueryProcessor         = deleteReminderQueryProcessor;
     this.deleteReminderHistoryQueryProcessor  = deleteReminderHistoryQueryProcessor;
     this.deleteReminderSummaryQueryProcessor  = deleteReminderSummaryQueryProcessor;
     this.reminderOutputedExistsQueryProcessor = reminderOutputedExistsQueryProcessor;
     this.reminderByCompanyExistQueryProcessor = reminderByCompanyExistQueryProcessor;
     this.transactionScopeBuilder              = transactionScopeBuilder;
 }
Esempio n. 2
0
 public ReminderSummarySettingProcessor(
     IAddReminderSummarySettingQueryProcessor addReminderSummarySettingQueryProcessor,
     IReminderSummarySettingQueryProcessor reminderSummarySettingQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlByCompanyIdQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.addReminderSummarySettingQueryProcessor     = addReminderSummarySettingQueryProcessor;
     this.reminderSummarySettingQueryProcessor        = reminderSummarySettingQueryProcessor;
     this.applicationControlByCompanyIdQueryProcessor = applicationControlByCompanyIdQueryProcessor;
     this.transactionScopeBuilder = transactionScopeBuilder;
 }