Exemplo n.º 1
0
            public InterestRateRow AddInterestRateRow(int ReqType, string ReqTypeName, System.Double RateNormal, System.Double RateBlack)
            {
                InterestRateRow rowInterestRateRow = ((InterestRateRow)(this.NewRow()));

                rowInterestRateRow.ItemArray = new object[] {
                    ReqType,
                    ReqTypeName,
                    RateNormal,
                    RateBlack
                };
                this.Rows.Add(rowInterestRateRow);
                return(rowInterestRateRow);
            }
Exemplo n.º 2
0
 public InterestRateRowChangeEvent(InterestRateRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveInterestRateRow(InterestRateRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddInterestRateRow(InterestRateRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 5
0
 public InterestRateRowChangeEvent(InterestRateRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }