示例#1
0
            public T_OCR_JOBRow AddT_OCR_JOBRow(decimal JOBID, string JOBNAME, string JOBDESC, System.DateTime NEXTEXECTIME, decimal INTERVAL, string STATE, string UNIT, string EMAILTO, string EMAILCC, string JOBRESULT, string SUBJECT)
            {
                T_OCR_JOBRow rowT_OCR_JOBRow = ((T_OCR_JOBRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    JOBID,
                    JOBNAME,
                    JOBDESC,
                    NEXTEXECTIME,
                    INTERVAL,
                    STATE,
                    UNIT,
                    EMAILTO,
                    EMAILCC,
                    JOBRESULT,
                    SUBJECT
                };
                rowT_OCR_JOBRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowT_OCR_JOBRow);
                return(rowT_OCR_JOBRow);
            }
示例#2
0
 public void RemoveT_OCR_JOBRow(T_OCR_JOBRow row)
 {
     this.Rows.Remove(row);
 }
示例#3
0
 public void AddT_OCR_JOBRow(T_OCR_JOBRow row)
 {
     this.Rows.Add(row);
 }
示例#4
0
 public T_OCR_JOBRowChangeEvent(T_OCR_JOBRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }