Exemplo n.º 1
0
            public AccountsStatementsRow AddAccountsStatementsRow(string CurrencyID, string OrgName, string RAccount, int AccountID, int OrgID, int HeaderID, System.DateTime PaymentOrderDate, string PaymentNo, int OrgAccountIDCorr, bool Direction, System.Double PaymentOrderSum, string PaymentOrderPurpose, string Remarks, string Direct, string CodeKPP)
            {
                AccountsStatementsRow rowAccountsStatementsRow = ((AccountsStatementsRow)(this.NewRow()));

                rowAccountsStatementsRow.ItemArray = new object[] {
                    CurrencyID,
                    OrgName,
                    RAccount,
                    AccountID,
                    OrgID,
                    null,
                    HeaderID,
                    PaymentOrderDate,
                    PaymentNo,
                    OrgAccountIDCorr,
                    Direction,
                    PaymentOrderSum,
                    PaymentOrderPurpose,
                    Remarks,
                    Direct,
                    CodeKPP
                };
                this.Rows.Add(rowAccountsStatementsRow);
                return(rowAccountsStatementsRow);
            }
Exemplo n.º 2
0
 public AccountsStatementsRowChangeEvent(AccountsStatementsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveAccountsStatementsRow(AccountsStatementsRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddAccountsStatementsRow(AccountsStatementsRow row)
 {
     this.Rows.Add(row);
 }