Beispiel #1
0
            public PaymentsOrdersRow AddPaymentsOrdersRow(System.DateTime HeaderDate, string PaymentNo, System.DateTime PaymentOrderDate, bool Confirmed, string RAccount, string OrgName, string CodeINN, string RAccountContra, string OrgNameContra, System.Double PaymentOrderSum, string PaymentOrderPurpose, string CodeINNContra, string Remarks)
            {
                PaymentsOrdersRow rowPaymentsOrdersRow = ((PaymentsOrdersRow)(this.NewRow()));

                rowPaymentsOrdersRow.ItemArray = new object[] {
                    null,
                    HeaderDate,
                    null,
                    PaymentNo,
                    PaymentOrderDate,
                    Confirmed,
                    RAccount,
                    OrgName,
                    CodeINN,
                    RAccountContra,
                    OrgNameContra,
                    PaymentOrderSum,
                    PaymentOrderPurpose,
                    CodeINNContra,
                    null,
                    null,
                    null,
                    null,
                    Remarks,
                    null
                };
                this.Rows.Add(rowPaymentsOrdersRow);
                return(rowPaymentsOrdersRow);
            }
Beispiel #2
0
 public PaymentsOrdersRowChangeEvent(PaymentsOrdersRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemovePaymentsOrdersRow(PaymentsOrdersRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddPaymentsOrdersRow(PaymentsOrdersRow row)
 {
     this.Rows.Add(row);
 }