Exemplo n.º 1
0
            public CurrenciesHistoryRow AddCurrenciesHistoryRow(System.DateTime CurrDate, string CurrencyID, System.Double CurrRate, string BaseCurrencyID, string CurrencyName)
            {
                CurrenciesHistoryRow rowCurrenciesHistoryRow = ((CurrenciesHistoryRow)(this.NewRow()));

                rowCurrenciesHistoryRow.ItemArray = new object[] {
                    null,
                    CurrDate,
                    CurrencyID,
                    CurrRate,
                    BaseCurrencyID,
                    CurrencyName
                };
                this.Rows.Add(rowCurrenciesHistoryRow);
                return(rowCurrenciesHistoryRow);
            }
Exemplo n.º 2
0
 public CurrenciesHistoryRowChangeEvent(CurrenciesHistoryRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveCurrenciesHistoryRow(CurrenciesHistoryRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddCurrenciesHistoryRow(CurrenciesHistoryRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 5
0
 public CurrenciesHistoryRowChangeEvent(CurrenciesHistoryRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }