Beispiel #1
0
 public payment_Frame(dynamic invoice, Invoice_Frame invf)
 {
     InitializeComponent();
     this.setTitle("Payment Window");
     this.invoice       = invoice;
     this.invoice_form  = invf;
     this.netDue        = Math.Round(invoice.net_total, 2);
     invoice.net_due    = invoice.net_total;
     this.ActiveControl = amountTextBox;
 }
Beispiel #2
0
 public Permission_frame(Invoice_Frame invoice)
 {
     InitializeComponent();
     this.invoice = invoice;
 }
Beispiel #3
0
 public ProductSearch_Frame(Invoice_Frame inv)
 {
     InitializeComponent();
     this.invoice = inv;
 }