示例#1
0
        public List <LabelDTO> Check4Labels(string richid)
        {
            Stopwatch tw = new Stopwatch();

            tw.Start();

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

            List <LabelDTO> labes = null;

            labes = bll.GetLabelsByRichiesta(richid);

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

            return(labes);
        }