예제 #1
0
파일: LIS.cs 프로젝트: GitMAGI/LISPluginGen
        public List <AnalisiDTO> GetAnalsByRichIdExt(string richid_)
        {
            Stopwatch tw = new Stopwatch();

            tw.Start();

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

            List <AnalisiDTO> anals = null;

            anals = bll.GetAnalisisByRichiestaExt(richid_);

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

            return(anals);
        }