예제 #1
0
 public FilesRow AddFilesRow(JobsRow parentJobsRowByJobs_Files, string RemoteUrl, string LocalPath, string UniqueIdentifier, string OriginalPath) {
     FilesRow rowFilesRow = ((FilesRow)(this.NewRow()));
     rowFilesRow.ItemArray = new object[] {
             parentJobsRowByJobs_Files[0],
             RemoteUrl,
             LocalPath,
             UniqueIdentifier,
             OriginalPath};
     this.Rows.Add(rowFilesRow);
     return rowFilesRow;
 }
예제 #2
0
 public void AddJobsRow(JobsRow row) {
     this.Rows.Add(row);
 }
예제 #3
0
 public void RemoveJobsRow(JobsRow row) {
     this.Rows.Remove(row);
 }
예제 #4
0
 public JobsRowChangeEvent(JobsRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }