コード例 #1
0
ファイル: paymentForm.cs プロジェクト: Trexis/financemanager
        public paymentForm(Context context, Customer customer)
        {
            this.context = context;

            InitializeComponent();
            this.customer = customer;
            payment = new Payment(customer);

            populateFields();
        }
コード例 #2
0
ファイル: paymentForm.cs プロジェクト: Trexis/financemanager
        public paymentForm(Context context, Invoice invoice)
        {
            this.context = context;

            InitializeComponent();
            this.invoice = invoice;
            this.customer = invoice.Customer;
            payment = new Payment(invoice);

            populateFields();
        }