示例#1
0
        /**************************************************************************************************/
        private void FillImagingStatus(string p, LastKnownValueRow LKV)
        {
            if (proband.breastImagingHx.Count > 0)
            {
                proband.breastImagingHx.Sort(BreastImagingStudy.CompareDiagnosticByDate);

                foreach (BreastImagingStudy bis in proband.breastImagingHx)
                {
                    if (string.IsNullOrEmpty(bis.imagingType) == false)
                    {
                        if (bis.imagingType == p)
                        {
                            LKV.AddDiagnostic(bis);
                        }
                    }
                }
            }
        }
示例#2
0
        /**************************************************************************************************/
        private void FillImagingStatus(string p, LastKnownValueRow LKV)
        {
            if (proband.breastImagingHx.Count > 0)
            {
                proband.breastImagingHx.Sort(BreastImagingStudy.CompareDiagnosticByDate);

                foreach (BreastImagingStudy bis in proband.breastImagingHx)
                {
                    if (string.IsNullOrEmpty(bis.imagingType) == false)
                    {
                        if (bis.imagingType == p)
                        {
                            LKV.AddDiagnostic(bis);
                        }
                    }
                }
            }
        }