public QualificationMasterRowChangeEvent(QualificationMasterRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveQualificationMasterRow(QualificationMasterRow row) { this.Rows.Remove(row); }
public EmployeeQualificationsRow AddEmployeeQualificationsRow(System.Guid EmployeeQualiID, EmployeeMasterRow parentEmployeeMasterRowByFK_EmployeeQualifications_EmployeeMaster, QualificationMasterRow parentQualificationMasterRowByFK_EmployeeQualifications_QualificationMaster, string Details, string CreatedBy, System.DateTime CreatedAt, string ModifiedBy, System.DateTime ModifiedAt) { EmployeeQualificationsRow rowEmployeeQualificationsRow = ((EmployeeQualificationsRow)(this.NewRow())); object[] columnValuesArray = new object[] { EmployeeQualiID, null, null, Details, CreatedBy, CreatedAt, ModifiedBy, ModifiedAt}; if ((parentEmployeeMasterRowByFK_EmployeeQualifications_EmployeeMaster != null)) { columnValuesArray[1] = parentEmployeeMasterRowByFK_EmployeeQualifications_EmployeeMaster[0]; } if ((parentQualificationMasterRowByFK_EmployeeQualifications_QualificationMaster != null)) { columnValuesArray[2] = parentQualificationMasterRowByFK_EmployeeQualifications_QualificationMaster[0]; } rowEmployeeQualificationsRow.ItemArray = columnValuesArray; this.Rows.Add(rowEmployeeQualificationsRow); return rowEmployeeQualificationsRow; }
public void AddQualificationMasterRow(QualificationMasterRow row) { this.Rows.Add(row); }