public void AddAgentRelationship(AgentRelationship agentRelationship)
        {
            if (AgentRelationships == null)
            {
                AgentRelationships = new List <AgentRelationship>();
            }

            AgentRelationships.Add(agentRelationship);
        }
Пример #2
0
 public void AddAgentRelationship(AgentRelationship agentRelationship)
 {
     AgentRelationships.Add(agentRelationship);
 }