public void AddEmployeeDetailsRow(EmployeeDetailsRow row) {
     this.Rows.Add(row);
 }
 public void RemoveEmployeeDetailsRow(EmployeeDetailsRow row) {
     this.Rows.Remove(row);
 }
 public EmployeeDetailsRowChangeEvent(EmployeeDetailsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }