Exemplo n.º 1
0
        public IEnumerable <proc_LessRevenuePeers_Result> Get(string Ticker)
        {
            using (FinanceEntities entities = new FinanceEntities())
            {
                var templist = from a in entities.proc_LessRevenuePeers(Ticker)
                               // where a.IPOYear != null
                               select a;

                return(templist.ToList());
            }
        }