コード例 #1
0
            public Agent_SpecRow AddAgent_SpecRow(string CodeName, string Specialtyname)
            {
                Agent_SpecRow rowAgent_SpecRow = ((Agent_SpecRow)(this.NewRow()));

                rowAgent_SpecRow.ItemArray = new object[] {
                    CodeName,
                    Specialtyname
                };
                this.Rows.Add(rowAgent_SpecRow);
                return(rowAgent_SpecRow);
            }
コード例 #2
0
 public Agent_SpecRowChangeEvent(Agent_SpecRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveAgent_SpecRow(Agent_SpecRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddAgent_SpecRow(Agent_SpecRow row)
 {
     this.Rows.Add(row);
 }