Exemple #1
0
            public OutboundAgentServiceTableRow AddOutboundAgentServiceTableRow(int AgentID, string ServiceCode, string Description, int Factor)
            {
                OutboundAgentServiceTableRow rowOutboundAgentServiceTableRow = ((OutboundAgentServiceTableRow)(this.NewRow()));

                rowOutboundAgentServiceTableRow.ItemArray = new object[] {
                    null,
                    AgentID,
                    ServiceCode,
                    Description,
                    Factor
                };
                this.Rows.Add(rowOutboundAgentServiceTableRow);
                return(rowOutboundAgentServiceTableRow);
            }
Exemple #2
0
 public OutboundAgentServiceTableRowChangeEvent(OutboundAgentServiceTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveOutboundAgentServiceTableRow(OutboundAgentServiceTableRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddOutboundAgentServiceTableRow(OutboundAgentServiceTableRow row)
 {
     this.Rows.Add(row);
 }