Beispiel #1
0
 public MigratePayments(
     InsertDicCustomersHandler insertDicCustomersHandler,
     InsertOnlyPaymentsHandler insertOnlyPaymentsHandler)
 {
     _insertDicCustomersHandler = insertDicCustomersHandler;
     _insertOnlyPaymentsHandler = insertOnlyPaymentsHandler;
 }
Beispiel #2
0
 public MigrateAllData(
     InsertAllDictionariesHandler insertAllDictionariesHandler,
     InsertDicCustomersHandler insertDicCustomersHandler,
     InsertSecurityUsersHandler insertSecurityUsersHandler,
     InsertRequestsHandler insertRequestsHandler,
     InsertDocumentsHandler insertDocumentsHandler,
     InsertProtectionDocsHandler insertProtectionDocsHandler,
     InsertContractsHandler insertContractsHandler,
     PrepareMigrationHandler prepareMigrationHandler,
     InsertPaymentsHandler insertPaymentsHandler,
     InsertMainEntityRelationsHandler insertMainEntityRelationsHandler,
     MigrateAttachments migrateAttachments)
 {
     _insertAllDictionariesHandler     = insertAllDictionariesHandler;
     _insertDicCustomersHandler        = insertDicCustomersHandler;
     _insertSecurityUsersHandler       = insertSecurityUsersHandler;
     _insertRequestsHandler            = insertRequestsHandler;
     _insertDocumentsHandler           = insertDocumentsHandler;
     _insertProtectionDocsHandler      = insertProtectionDocsHandler;
     _insertContractsHandler           = insertContractsHandler;
     _prepareMigrationHandler          = prepareMigrationHandler;
     _insertPaymentsHandler            = insertPaymentsHandler;
     _insertMainEntityRelationsHandler = insertMainEntityRelationsHandler;
     _migrateAttachments = migrateAttachments;
 }