コード例 #1
0
            public InterestRatesRow AddInterestRatesRow(int ClientID, int RequestTypeID, bool IsNormal, System.Double ServiceCharge, System.Double MaxSum)
            {
                InterestRatesRow rowInterestRatesRow = ((InterestRatesRow)(this.NewRow()));

                rowInterestRatesRow.ItemArray = new object[] {
                    null,
                    ClientID,
                    RequestTypeID,
                    IsNormal,
                    ServiceCharge,
                    MaxSum
                };
                this.Rows.Add(rowInterestRatesRow);
                return(rowInterestRatesRow);
            }
コード例 #2
0
 public InterestRatesRowChangeEvent(InterestRatesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveInterestRatesRow(InterestRatesRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddInterestRatesRow(InterestRatesRow row)
 {
     this.Rows.Add(row);
 }
コード例 #5
0
 public InterestRatesRowChangeEvent(InterestRatesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }