예제 #1
0
            public Agent_SpecialtyRow AddAgent_SpecialtyRow(int Agent_SpecialtyID, int AgentID, int SpecialtyID)
            {
                Agent_SpecialtyRow rowAgent_SpecialtyRow = ((Agent_SpecialtyRow)(this.NewRow()));

                rowAgent_SpecialtyRow.ItemArray = new object[] {
                    Agent_SpecialtyID,
                    AgentID,
                    SpecialtyID
                };
                this.Rows.Add(rowAgent_SpecialtyRow);
                return(rowAgent_SpecialtyRow);
            }
예제 #2
0
 public Agent_SpecialtyRowChangeEvent(Agent_SpecialtyRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveAgent_SpecialtyRow(Agent_SpecialtyRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddAgent_SpecialtyRow(Agent_SpecialtyRow row)
 {
     this.Rows.Add(row);
 }