Example #1
0
            public SpecialAgentTableRow AddSpecialAgentTableRow(string ID, string CLIENT_NUMBER, string CLIENT_DIVISION, string LOCATION, string ACCOUNT_NUMBER, string SAN_ID, string ZONE_CODE, string IS_RECORD, string TITLE, string INSTRUCTIONS, string INDICATOR, string ICON)
            {
                SpecialAgentTableRow rowSpecialAgentTableRow = ((SpecialAgentTableRow)(this.NewRow()));

                rowSpecialAgentTableRow.ItemArray = new object[] {
                    ID,
                    CLIENT_NUMBER,
                    CLIENT_DIVISION,
                    LOCATION,
                    ACCOUNT_NUMBER,
                    SAN_ID,
                    ZONE_CODE,
                    IS_RECORD,
                    TITLE,
                    INSTRUCTIONS,
                    INDICATOR,
                    ICON
                };
                this.Rows.Add(rowSpecialAgentTableRow);
                return(rowSpecialAgentTableRow);
            }
Example #2
0
 public SpecialAgentTableRowChangeEvent(SpecialAgentTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveSpecialAgentTableRow(SpecialAgentTableRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddSpecialAgentTableRow(SpecialAgentTableRow row)
 {
     this.Rows.Add(row);
 }
 public SpecialAgentTableRowChangeEvent(SpecialAgentTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }