Exemplo n.º 1
0
        private static IEnumerable <SsqExcelFunction> LoadFunctions(SsqJson ssqJson)
        {
            IEnumerable <SsqExcelFunction> ssqExcelFunctions = SsqDelegate.GetSsqExcelFunctions(ssqJson);

            log.Debug("Loaded SSQ Excel functions.");

            return(ssqExcelFunctions);
        }
Exemplo n.º 2
0
        public static IEnumerable <object[]> SsqReleaseData()
        {
            string isinTickerWkn;

            foreach (KeyValuePair <string, UserDefinedFunction> udf in SsqDelegate.GetUserDefinedFunctions(SsqLoader.SsqJson))
            {
                isinTickerWkn = Provider.ProviderTestData().First(p => p.UdfName == udf.Key).IsinTickerWkn;
                yield return(new object[] { udf.Value.QueryParameter, udf.Key, isinTickerWkn });
            }
        }