Exemplo n.º 1
0
        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);
        }