コード例 #1
0
        public BankSpecificSettingsSE(CreditorPaymentFormat credPaymFormat)
        {
            CreditorPaymentFormatClientISOSE credPaymFormatISOSE = new CreditorPaymentFormatClientISOSE();

            StreamingManager.Copy(credPaymFormat, credPaymFormatISOSE);
            CredPaymFormat = credPaymFormatISOSE;
        }
コード例 #2
0
        public CWISOSE_PaymentSetup(CrudAPI api, CreditorPaymentFormatClient paymentFormat)
        {
            Capi             = api;
            this.DataContext = this;
            InitializeComponent();
            paymentFormatISOSE = new CreditorPaymentFormatClientISOSE();
            StreamingManager.Copy(paymentFormat, paymentFormatISOSE);
            cmbBank.ItemsSource = Enum.GetValues(typeof(seBank));


            this.DataContext = paymentFormatISOSE;
            this.Title       = string.Format(Uniconta.ClientTools.Localization.lookup("SetupOBJ"), Uniconta.ClientTools.Localization.lookup("Payment"));
#if SILVERLIGHT
            Utility.SetThemeBehaviorOnChildWindow(this);
#endif
            this.Loaded += CW_Loaded;
        }