コード例 #1
0
ファイル: LIS.cs プロジェクト: GitMAGI/LISPluginGen
        public List <RichiestaLISDTO> GetRichiesteByEpisodio(string episid)
        {
            Stopwatch tw = new Stopwatch();

            tw.Start();

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

            List <RichiestaLISDTO> richs = null;

            richs = bll.GetRichiesteByEpisodio(episid);
            if (richs == null)
            {
                string msg = string.Format("No Rich with EpisodioID: {0} found. The operation will be aborted!", episid);
                log.Info(msg);
            }

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

            return(richs);
        }