public PatientAddressLogRow AddPatientAddressLogRow(int Id, string PatientFirstName, string PatientMiddleName, string PatientLastName, string PatientAddress1, string PatientAddress2, string PatientAddress3, byte[] PatientImage)
            {
                PatientAddressLogRow rowPatientAddressLogRow = ((PatientAddressLogRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Id,
                    PatientFirstName,
                    PatientMiddleName,
                    PatientLastName,
                    PatientAddress1,
                    PatientAddress2,
                    PatientAddress3,
                    PatientImage
                };
                rowPatientAddressLogRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowPatientAddressLogRow);
                return(rowPatientAddressLogRow);
            }
 public PatientAddressLogRowChangeEvent(PatientAddressLogRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovePatientAddressLogRow(PatientAddressLogRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddPatientAddressLogRow(PatientAddressLogRow row)
 {
     this.Rows.Add(row);
 }