public static List <DC_BloodCountReports> GetBloodCount(string _patientID)
        {
            DL_BloodCountReports        _objDL = new DL_BloodCountReports();
            List <DC_BloodCountReports> data   = _objDL.GetBloodCountReports(new DC_BloodCountReports_Search()
            {
                PatientID = Guid.Parse(_patientID), PageNo = 0, PageSize = 20
            });

            return(data);
        }