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

            tw.Start();

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

            List <LabelDTO> labes = null;

            labes = bll.GetLabelsByIdRichiestaExt(richid_);

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

            return(labes);
        }