Exemple #1
0
            public Agent_AssignmentRow AddAgent_AssignmentRow(string CodeName, string Name, string Description, string Location)
            {
                Agent_AssignmentRow rowAgent_AssignmentRow = ((Agent_AssignmentRow)(this.NewRow()));

                rowAgent_AssignmentRow.ItemArray = new object[] {
                    CodeName,
                    Name,
                    Description,
                    Location
                };
                this.Rows.Add(rowAgent_AssignmentRow);
                return(rowAgent_AssignmentRow);
            }
Exemple #2
0
 public Agent_AssignmentRowChangeEvent(Agent_AssignmentRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveAgent_AssignmentRow(Agent_AssignmentRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddAgent_AssignmentRow(Agent_AssignmentRow row)
 {
     this.Rows.Add(row);
 }