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); }
public PaymentsOrdersRowChangeEvent(PaymentsOrdersRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemovePaymentsOrdersRow(PaymentsOrdersRow row) { this.Rows.Remove(row); }
public void AddPaymentsOrdersRow(PaymentsOrdersRow row) { this.Rows.Add(row); }