public static List <DC_KidneyFunctionsReports> GetKidneyFunction(string _patientID)
        {
            DL_KidneyFunReports _objDL            = new DL_KidneyFunReports();
            List <DC_KidneyFunctionsReports> data = _objDL.GetKidneyFunctionsReports(new DC_KidneyFunctionsReports_Search()
            {
                PatientID = Guid.Parse(_patientID), PageNo = 0, PageSize = 20
            });

            return(data);
        }