public RoleData.SecurityRightsRow AddSecurityRightsRow(int SecurityRightId)
 {
     RoleData.SecurityRightsRow row = (RoleData.SecurityRightsRow)base.NewRow();
     row.ItemArray = new object[] { SecurityRightId };
     base.Rows.Add(row);
     return(row);
 }
 public SecurityRightsRowChangeEvent(RoleData.SecurityRightsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveSecurityRightsRow(RoleData.SecurityRightsRow row)
 {
     base.Rows.Remove(row);
 }
 public void AddSecurityRightsRow(RoleData.SecurityRightsRow row)
 {
     base.Rows.Add(row);
 }
 public SecurityRightsRowChangeEvent(RoleData.SecurityRightsRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }