protected void BuildActiveSurveillanceDate()
        {
            string ASDateText = ProstateUtil.ActiveSurveillanceDate(this.patientID);

            if (ASDateText.Length > 0)
            {
                ASDateLabel.Text = ASDateText;
            }
        }
Beispiel #2
0
        protected void BuildActiveSurveillanceDate()
        {
            populatedDiagnosisTable.Visible = false;
            NewDiagnosisTable.Visible       = false;

            // AS Date is the earlier of the following: a) first MSK Biopsy or b) first status record of 'Active Surveillance' or 'watchful waiting'

            if (ActiveSurveillanceDateText.Text.Length < 1)  // user may elect to overwrite this value, if so, do not change it
            {
                string ASDateText = ProstateUtil.ActiveSurveillanceDate(this._patientId);
                if (ASDateText.Length > 0)
                {
                    ActiveSurveillanceDateText.Text = ASDateText;
                }
            }
        }