Пример #1
0
        public List <RichiestaLISDTO> Check4Richs(string evenid)
        {
            Stopwatch tw = new Stopwatch();

            tw.Start();

            log.Info(string.Format("Starting ..."));

            List <RichiestaLISDTO> exams = null;

            exams = bll.GetRichiesteLISByEven(evenid);

            tw.Stop();
            log.Info(string.Format("Completed! Elapsed time {0}", LibString.TimeSpanToTimeHmsms(tw.Elapsed)));

            return(exams);
        }