Example #1
0
        public RefertoDTO Check4Report(string richid)
        {
            Stopwatch tw = new Stopwatch();

            tw.Start();

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

            RefertoDTO refe = null;

            refe = bll.GetRefertoByEsamId(richid);

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

            return(refe);
        }