public void DeassignService(int agentInstanceId) { LookupStrategies.DeassignService(agentInstanceId); AggregationServices?.DeassignService(agentInstanceId); PriorEvalStrategies?.DeassignService(agentInstanceId); PreviousGetterStrategies?.DeassignService(agentInstanceId); }
public void DeassignService(int agentInstanceId) { LookupStrategies.DeassignService(agentInstanceId); if (AggregationServices != null) { AggregationServices.DeassignService(agentInstanceId); } if (PriorEvalStrategies != null) { PriorEvalStrategies.DeassignService(agentInstanceId); } if (PreviousGetterStrategies != null) { PreviousGetterStrategies.DeassignService(agentInstanceId); } }