Example #1
0
            public ElementaryMvtsRow AddElementaryMvtsRow(string Date, string Account_number_debit, string Account_number_credit, System.Decimal Amount, string Currency_code, string Username, string Event_code, string Funding_line, int Number, int Movement_set_id)
            {
                ElementaryMvtsRow rowElementaryMvtsRow = ((ElementaryMvtsRow)(this.NewRow()));

                rowElementaryMvtsRow.ItemArray = new object[] {
                    Date,
                    Account_number_debit,
                    Account_number_credit,
                    Amount,
                    Currency_code,
                    Username,
                    Event_code,
                    Funding_line,
                    Number,
                    Movement_set_id
                };
                this.Rows.Add(rowElementaryMvtsRow);
                return(rowElementaryMvtsRow);
            }
 public ElementaryMvtsRowChangeEvent(ElementaryMvtsRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveElementaryMvtsRow(ElementaryMvtsRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddElementaryMvtsRow(ElementaryMvtsRow row)
 {
     this.Rows.Add(row);
 }
Example #5
0
 public ElementaryMvtsRowChangeEvent(ElementaryMvtsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #6
0
 public void RemoveElementaryMvtsRow(ElementaryMvtsRow row)
 {
     this.Rows.Remove(row);
 }
Example #7
0
 public void AddElementaryMvtsRow(ElementaryMvtsRow row)
 {
     this.Rows.Add(row);
 }