Esempio n. 1
0
            public StreetSuffixRow AddStreetSuffixRow(string Common, string Primary, string Abbreviation)
            {
                StreetSuffixRow rowStreetSuffixRow = ((StreetSuffixRow)(this.NewRow()));

                rowStreetSuffixRow.ItemArray = new object[] {
                    Common,
                    Primary,
                    Abbreviation
                };
                this.Rows.Add(rowStreetSuffixRow);
                return(rowStreetSuffixRow);
            }
Esempio n. 2
0
 public StreetSuffixRowChangeEvent(StreetSuffixRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveStreetSuffixRow(StreetSuffixRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddStreetSuffixRow(StreetSuffixRow row)
 {
     this.Rows.Add(row);
 }