CardShop.ViewModels.RuleObject.SetUpActions C# (CSharp) Method

SetUpActions() private method

private SetUpActions ( IList actions ) : List
actions IList
return List
        private List<ActionObject> SetUpActions(IList<RuleAction> actions)
        {
            List<ActionObject> actionObjects = new List<ActionObject>();
            foreach (RuleStatementAction action in actions)
            {
                actionObjects.Add(RuleObjectAction(action));
            }

            return actionObjects;
        }