예제 #1
0
        public static IExecutionService AddFormulaRange(this IExecutionService service, IEnumerable <Formula> formulas)
        {
            Guard.AgainstNull(service, nameof(service));

            if (formulas != null)
            {
                foreach (var formula in formulas)
                {
                    service.AddFormula(formula);
                }
            }

            return(service);
        }