コード例 #1
0
ファイル: DetailDuty.cs プロジェクト: youye00/UDS
            public DutyDetailRow AddDutyDetailRow(System.DateTime Date, System.DateTime OnDutyTime, System.DateTime OffDutyTime, string OffDutyMemo, string OnDutyMemo)
            {
                DutyDetailRow rowDutyDetailRow = ((DutyDetailRow)(this.NewRow()));

                rowDutyDetailRow.ItemArray = new object[] {
                    Date,
                    OnDutyTime,
                    OffDutyTime,
                    OffDutyMemo,
                    OnDutyMemo
                };
                this.Rows.Add(rowDutyDetailRow);
                return(rowDutyDetailRow);
            }
コード例 #2
0
ファイル: DetailDuty.cs プロジェクト: blfsir/benzoa
 public DutyDetailRowChangeEvent(DutyDetailRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #3
0
ファイル: DetailDuty.cs プロジェクト: blfsir/benzoa
 public void RemoveDutyDetailRow(DutyDetailRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
ファイル: DetailDuty.cs プロジェクト: blfsir/benzoa
 public void AddDutyDetailRow(DutyDetailRow row)
 {
     this.Rows.Add(row);
 }
コード例 #5
0
ファイル: DetailDuty.cs プロジェクト: youye00/UDS
 public DutyDetailRowChangeEvent(DutyDetailRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #6
0
ファイル: DetailDuty.cs プロジェクト: youye00/UDS
 public void RemoveDutyDetailRow(DutyDetailRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #7
0
ファイル: DetailDuty.cs プロジェクト: youye00/UDS
 public void AddDutyDetailRow(DutyDetailRow row)
 {
     this.Rows.Add(row);
 }