public static List <DC_LiverFunctionReports> GetLiverFun(string _patientID)
        {
            DL_LiverFunReports             _objDL = new DL_LiverFunReports();
            List <DC_LiverFunctionReports> data   = _objDL.GetLiverFunReports(new DC_LiverFunctionReports_Search()
            {
                PatientID = Guid.Parse(_patientID), PageNo = 0, PageSize = 20
            });

            return(data);
        }