public BillingScheduledPaymentReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IBillingSearchQueryProcessor billingSearchQueryProcessor
     )
 {
     this.companyQueryProcessor       = companyQueryProcessor;
     this.billingSearchQueryProcessor = billingSearchQueryProcessor;
 }
Beispiel #2
0
 public CustomerGroupReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ICustomerGroupByIdQueryProcessor customerGroupByIdQueryProcessor
     )
 {
     this.companyQueryProcessor           = companyQueryProcessor;
     this.customerGroupByIdQueryProcessor = customerGroupByIdQueryProcessor;
 }
 public LoginUserReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ILoginUserQueryProcessor loginUserQueryProcessor
     )
 {
     this.companyQueryProcessor   = companyQueryProcessor;
     this.loginUserQueryProcessor = loginUserQueryProcessor;
 }
 public CollectionScheduleListReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ICollectionScheduleProcessor collectionScheduleProcessor
     )
 {
     this.companyQueryProcessor       = companyQueryProcessor;
     this.collectionScheduleProcessor = collectionScheduleProcessor;
 }
Beispiel #5
0
 public CustomerLedgerReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ICustomerLedgerProcessor customerLedgerProcessor
     )
 {
     this.companyQueryProcessor   = companyQueryProcessor;
     this.customerLedgerProcessor = customerLedgerProcessor;
 }
 public SectionWithDepartmentReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ISectionWithDepartmentQueryProcessor sectionWithDepartmentQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.sectionWithDepartmentQueryProcessor = sectionWithDepartmentQueryProcessor;
 }
Beispiel #7
0
 public StaffReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IStaffQueryProcessor staffQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.staffQueryProcessor   = staffQueryProcessor;
 }
 public SectionReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ISectionQueryProcessor sectionQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.sectionQueryProcessor = sectionQueryProcessor;
 }
Beispiel #9
0
 public CreditAgingListReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ICreditAgingListProcessor creditAgingListProcessor
     )
 {
     this.companyQueryProcessor    = companyQueryProcessor;
     this.creditAgingListProcessor = creditAgingListProcessor;
 }
 public DepartmentReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IDepartmentByCodeQueryProcessor departmentNameByCodeQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.departmentNameByCodeQueryProcessor = departmentNameByCodeQueryProcessor;
 }
 public SectionWithLoginUserReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ISectionWithLoginUserQueryProcessor sectionWithLoginUserQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.sectionWithLoginUserQueryProcessor = sectionWithLoginUserQueryProcessor;
 }
 public JuridicalPersonalityReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IJuridicalPersonalityQueryProcessor juridicalPersonalityQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.juridicalPersonalityQueryProcessor = juridicalPersonalityQueryProcessor;
 }
 public GeneralSettingReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IMasterGetByCodesQueryProcessor <GeneralSetting> masterGetByCodesQueryProcessor
     )
 {
     this.companyQueryProcessor          = companyQueryProcessor;
     this.masterGetByCodesQueryProcessor = masterGetByCodesQueryProcessor;
 }
 public MatchingJournalizingReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
 }
 public ReceiptSectionTransferReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
     IReceiptSectionTransferQueryProcessor receiptSectionTransferQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
     this.receiptSectionTransferQueryProcessor         = receiptSectionTransferQueryProcessor;
 }
 public ReceiptApportionReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor
     )
 {
     this.companyQueryProcessor           = companyQueryProcessor;
     this.columnNameSettingQueryProcessor = columnNameSettingQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
 }
 public CustomerRegisterReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
     ICustomerQueryProcessor customerQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
     this.customerQueryProcessor = customerQueryProcessor;
 }
Beispiel #18
0
 public BillingAgingListDetailReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
     IBillingAgingListQueryProcessor billingAgingListQueryProcessor
     )
 {
     this.companyQueryProcessor           = companyQueryProcessor;
     this.columnNameSettingQueryProcessor = columnNameSettingQueryProcessor;
     this.billingAgingListQueryProcessor  = billingAgingListQueryProcessor;
 }
 public ScheduledPaymentReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IReportSettingQueryProcessor reportSettingQueryProcessor,
     IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
     IScheduledPaymentListQueryProcessor scheduledPaymentListQueryProcessor
     )
 {
     this.companyQueryProcessor              = companyQueryProcessor;
     this.reportSettingQueryProcessor        = reportSettingQueryProcessor;
     this.columnNameSettingQueryProcessor    = columnNameSettingQueryProcessor;
     this.scheduledPaymentListQueryProcessor = scheduledPaymentListQueryProcessor;
 }
 public ArrearagesListReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
     IReportSettingQueryProcessor reportSettingQueryProcessor,
     IArrearagesListQueryProcessor arrearagesListQueryProcessor
     )
 {
     this.companyQueryProcessor           = companyQueryProcessor;
     this.columnNameSettingQueryProcessor = columnNameSettingQueryProcessor;
     this.reportSettingQueryProcessor     = reportSettingQueryProcessor;
     this.arrearagesListQueryProcessor    = arrearagesListQueryProcessor;
 }
Beispiel #21
0
 public CompanyProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IAddCompanyQueryProcessor addCompanyQueryProcessor,
     IDeleteCompanyQueryProcessor deleteCompanyQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.companyQueryProcessor       = companyQueryProcessor;
     this.addCompanyQueryProcessor    = addCompanyQueryProcessor;
     this.deleteCompanyQueryProcessor = deleteCompanyQueryProcessor;
     this.transactionScopeBuilder     = transactionScopeBuilder;
 }
Beispiel #22
0
 public ReceiptSearchReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
     IGridSettingQueryProcessor gridSettingQueryProcessor,
     IReceiptSearchQueryProcessor receiptSearchQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
     this.gridSettingQueryProcessor   = gridSettingQueryProcessor;
     this.receiptSearchQueryProcessor = receiptSearchQueryProcessor;
 }
Beispiel #23
0
 public BillingJournalizingReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
     IBillingJournalizingQueryProcessor billingJournalizingQueryProcessor
     )
 {
     this.companyQueryProcessor           = companyQueryProcessor;
     this.columnNameSettingQueryProcessor = columnNameSettingQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
     this.billingJournalizingQueryProcessor            = billingJournalizingQueryProcessor;
 }
 public BillingAgingListReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
     IReportSettingQueryProcessor reportSettingQueryProcessor,
     IBillingAgingListProcessor billingAgingListProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
     this.reportSettingQueryProcessor = reportSettingQueryProcessor;
     this.billingAgingListProcessor   = billingAgingListProcessor;
 }
Beispiel #25
0
 public BillingImporterReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
     IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
     IImportDataDetailQueryProcessor importDataDetailQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
     this.columnNameSettingQueryProcessor = columnNameSettingQueryProcessor;
     this.importDataDetailQueryProcessor  = importDataDetailQueryProcessor;
     serializer = MessagePackSerializer.Get <BillingImport>();
 }
        public BillingScheduledPaymentImportReportProcessor(
            ICompanyQueryProcessor companyQueryProcessor,
            IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
            IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
            IImportDataDetailQueryProcessor importDataDetailQueryProcessor
            )
        {
            this.companyQueryProcessor = companyQueryProcessor;
            this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
            this.columnNameSettingQueryProcessor = columnNameSettingQueryProcessor;
            this.importDataDetailQueryProcessor  = importDataDetailQueryProcessor;

            serializer = MessagePackSerializer.Get <Models.Files.PaymentSchedule>();
        }
Beispiel #27
0
 public ArrearagesListSpreadsheetProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IColumnNameSettingQueryProcessor columnNameSettingQueryProcessor,
     IMasterGetByCodeQueryProcessor <Currency> currencyGetByCodeQueryProcessor,
     IReportSettingQueryProcessor reportSettingQueryProcessor,
     IArrearagesListQueryProcessor arrearagesListQueryProcessor
     )
 {
     this.companyQueryProcessor           = companyQueryProcessor;
     this.columnNameSettingQueryProcessor = columnNameSettingQueryProcessor;
     this.currencyGetByCodeQueryProcessor = currencyGetByCodeQueryProcessor;
     this.reportSettingQueryProcessor     = reportSettingQueryProcessor;
     this.arrearagesListQueryProcessor    = arrearagesListQueryProcessor;
 }
 public BillingAgingListShpreadsheetProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <Currency> currencyGetByIdsQueryProcessor,
     IReportSettingQueryProcessor reportSettingQueryProcessor,
     IBillingAgingListProcessor billingAgingListProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.applicationControlGetByCompanyQueryProcessor = applicationControlGetByCompanyQueryProcessor;
     this.currencyGetByIdsQueryProcessor = currencyGetByIdsQueryProcessor;
     this.reportSettingQueryProcessor    = reportSettingQueryProcessor;
     this.billingAgingListProcessor      = billingAgingListProcessor;
 }