Beispiel #1
0
 public static void SetPoolAgentSession(Int32 agent_id, Int32 incident_id)
 {
     BllPool.SetPoolAgentSession(agent_id, incident_id);
 }
Beispiel #2
0
 public static void SetPoolAgentBusy(Int32 agent_id, bool is_busy)
 {
     BllPool.SetPoolAgentBusy(agent_id, is_busy);
 }
Beispiel #3
0
 public static void SetPoolAgentIncident(Int32 agent_id, Int32 incident_id)
 {
     BllPool.SetPoolAgentIncident(agent_id, incident_id);
 }
Beispiel #4
0
 public static void SetPoolAgentAvailable(Int32 agent_id, bool is_available)
 {
     BllPool.SetPoolAgentAvailable(agent_id, is_available);
 }
Beispiel #5
0
 public static void DeletePoolAgent(Int32 agent_id)
 {
     BllPool.DeletePoolAgent(agent_id);
 }
Beispiel #6
0
 public static void InsertPoolAgent(Int32 agent_id)
 {
     BllPool.InsertPoolAgent(agent_id);
 }
Beispiel #7
0
 public static PoolDS.PoolDSDataTable SelectPoolAgent(Int32 agent_id)
 {
     return(BllPool.SelectPoolAgent(agent_id));
 }
Beispiel #8
0
 public static PoolDS.PoolDSDataTable GetAllPoolAgents()
 {
     return(BllPool.GetAllPoolAgents());
 }