Ejemplo n.º 1
0
 public QualificationMasterRowChangeEvent(QualificationMasterRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Ejemplo n.º 2
0
 public void RemoveQualificationMasterRow(QualificationMasterRow row) {
     this.Rows.Remove(row);
 }
Ejemplo n.º 3
0
 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;
 }
Ejemplo n.º 4
0
 public void AddQualificationMasterRow(QualificationMasterRow row) {
     this.Rows.Add(row);
 }