public FeaturesRow AddFeaturesRow(int FeatureID, string FeatureName, string LocationDesc, bool AA_Indicated, string CorporateName, int CorporateID, string PageName, string sorter)
            {
                FeaturesRow rowFeaturesRow = ((FeaturesRow)(this.NewRow()));

                rowFeaturesRow.ItemArray = new object[] {
                    FeatureID,
                    FeatureName,
                    LocationDesc,
                    AA_Indicated,
                    CorporateName,
                    CorporateID,
                    PageName,
                    sorter
                };
                this.Rows.Add(rowFeaturesRow);
                return(rowFeaturesRow);
            }
 public FeaturesRowChangeEvent(FeaturesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveFeaturesRow(FeaturesRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddFeaturesRow(FeaturesRow row)
 {
     this.Rows.Add(row);
 }
 public FeaturesRowChangeEvent(FeaturesRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveFeaturesRow(FeaturesRow row) {
     this.Rows.Remove(row);
 }
 public void AddFeaturesRow(FeaturesRow row) {
     this.Rows.Add(row);
 }