public mpfcoverRow AddmpfcoverRow(string FILE_NAME, string ER_ID, string ER_NAME, string EmployerAddress, string ContactName, string ContactPhoneNumber, string PayCenterCode, string ContributionPeriod, string ProductVersion, string RemoteProfileID, string BankKeyID)
            {
                mpfcoverRow rowmpfcoverRow = ((mpfcoverRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    FILE_NAME,
                    ER_ID,
                    ER_NAME,
                    EmployerAddress,
                    ContactName,
                    ContactPhoneNumber,
                    PayCenterCode,
                    ContributionPeriod,
                    ProductVersion,
                    RemoteProfileID,
                    BankKeyID
                };
                rowmpfcoverRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowmpfcoverRow);
                return(rowmpfcoverRow);
            }
 public void RemovempfcoverRow(mpfcoverRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddmpfcoverRow(mpfcoverRow row)
 {
     this.Rows.Add(row);
 }
 public mpfcoverRowChangeEvent(mpfcoverRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }