Пример #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);
            }
Пример #2
0
 public AccountsStatementsRowChangeEvent(AccountsStatementsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveAccountsStatementsRow(AccountsStatementsRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddAccountsStatementsRow(AccountsStatementsRow row)
 {
     this.Rows.Add(row);
 }