Пример #1
0
 public PayoutProcess(
     ShopifyPayoutPullWorker shopifyPayoutPullWorker,
     AcumaticaPayoutPushWorkerScreen acumaticaPayoutPushWorker,
     PayoutPersistRepository persistenceRepository)
 {
     _shopifyPayoutPullWorker   = shopifyPayoutPullWorker;
     _acumaticaPayoutPushWorker = acumaticaPayoutPushWorker;
     _persistenceRepository     = persistenceRepository;
 }
Пример #2
0
 public PayoutProcess(
     CredentialsRepository connectionRepository,
     ShopifyPayoutPullWorker shopifyPayoutPullWorker,
     BankImportService bankImportService,
     ShopifyPayoutRepository persistenceRepository)
 {
     _connectionRepository    = connectionRepository;
     _shopifyPayoutPullWorker = shopifyPayoutPullWorker;
     _bankImportService       = bankImportService;
     _persistenceRepository   = persistenceRepository;
 }