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); }