Exemplo n.º 1
0
 public IServiceCallResult SetAgentLifetimeState(int agentId, AgentLifetimeState agentLifetimeState)
 {
     Logger.Trace($"SetAgentLifetimeState() agentId:{agentId} agentLifeTimeState:{agentLifetimeState}");
     return(HandleAPICall(e => e.SetAgentLifetimeState(agentId, agentLifetimeState)));
 }
Exemplo n.º 2
0
 public IServiceCallResult <AgentDto[]> GetAllAgentsInLifetimeState(AgentLifetimeState agentLifetimeState)
 {
     Logger.Trace($"GetAllAgentsInLifetimeState() agentLifetimeState:{agentLifetimeState}");
     return(HandleAPICall <AgentDto[]>(e => e.GetAllAgentsInLifetimeState(agentLifetimeState)));
 }