예제 #1
0
            public GetFundSelectionRow AddGetFundSelectionRow(int FundID, string Fund, string Description)
            {
                GetFundSelectionRow rowGetFundSelectionRow = ((GetFundSelectionRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    FundID,
                    Fund,
                    Description
                };
                rowGetFundSelectionRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowGetFundSelectionRow);
                return(rowGetFundSelectionRow);
            }
예제 #2
0
 public GetFundSelectionRowChangeEvent(GetFundSelectionRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveGetFundSelectionRow(GetFundSelectionRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddGetFundSelectionRow(GetFundSelectionRow row)
 {
     this.Rows.Add(row);
 }