When the Coroutine.Return occurs, the data type is
System.Collections.ObjectModel.ReadOnlyCollecton <EventStepType> Results count = 26
in my Args.CompletedSuccessfully code, I do a GetType() and the data type is
IdeaBlade.EntityModel.EntityQueryOperations <EventStepType>
so what do I need to cast it to in order to get it into my ObservableCollection
var results = steps.Result as ?????????????????
ResetStepTypesList(results)
public ResetStepTypeList(<EventStepType> stepsTypes)
{
this.StepTypes.Clear();
stepTypes.foreach(StepTypes.Add);
}