+
+
+
+ {{ t('currency') }}
+
+
+ {{ currency }}
+
+
+
+
+
{{ t('correspondentAccount') }}
+
+
diff --git a/src/app/shared/components/shop-creation/create-international-shop-entity/components/international-bank-account-form/international-bank-account-form.component.ts b/src/app/shared/components/shop-creation/create-international-shop-entity/components/international-bank-account-form/international-bank-account-form.component.ts
new file mode 100644
index 00000000..0739c5ef
--- /dev/null
+++ b/src/app/shared/components/shop-creation/create-international-shop-entity/components/international-bank-account-form/international-bank-account-form.component.ts
@@ -0,0 +1,36 @@
+import { ChangeDetectionStrategy, Component, Injector } from '@angular/core';
+import { FormBuilder } from '@ngneat/reactive-forms';
+
+import { PayoutToolForm } from '@dsh/app/shared/components/shop-creation/create-international-shop-entity/components/payout-tool-form/payout-tool-form.component';
+import { createValidatedAbstractControlProviders, ValidatedWrappedAbstractControlSuperclass } from '@dsh/utils';
+
+export interface InternationalBankAccountForm {
+ payoutTool: PayoutToolForm;
+ currency: string;
+ correspondentPayoutTool?: PayoutToolForm;
+}
+
+@Component({
+ selector: 'dsh-international-bank-account-form',
+ templateUrl: 'international-bank-account-form.component.html',
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ providers: createValidatedAbstractControlProviders(InternationalBankAccountFormComponent),
+})
+export class InternationalBankAccountFormComponent extends ValidatedWrappedAbstractControlSuperclass