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; }
public StatusProcessor( IStatusQueryProcessor statusQueryProcessor, IAddStatusQueryProcessor addStatusQueryProcessor, IDeleteStatusQueryProcessor deleteStatusQueryProcessor, IStatusExistsQueryProcessor statusExistsQueryProcessor) { this.statusQueryProcessor = statusQueryProcessor; this.addStatusQueryProcessor = addStatusQueryProcessor; this.deleteStatusQueryProcessor = deleteStatusQueryProcessor; this.statusExistsQueryProcessor = statusExistsQueryProcessor; }