Example #1
0
            public EMPLOYEERow AddEMPLOYEERow(string EMPLOYEE_NAME, byte[] SIGNATURE, decimal ISEXISTS_SIGNATURE)
            {
                EMPLOYEERow rowEMPLOYEERow = ((EMPLOYEERow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    EMPLOYEE_NAME,
                    SIGNATURE,
                    ISEXISTS_SIGNATURE
                };
                rowEMPLOYEERow.ItemArray = columnValuesArray;
                this.Rows.Add(rowEMPLOYEERow);
                return(rowEMPLOYEERow);
            }
Example #2
0
 public EMPLOYEERowChangeEvent(EMPLOYEERow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveEMPLOYEERow(EMPLOYEERow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddEMPLOYEERow(EMPLOYEERow row)
 {
     this.Rows.Add(row);
 }