gov.va.medora.mdo.VitalSignSet.getVitalSign C# (CSharp) Method

getVitalSign() public method

public getVitalSign ( string type ) : VitalSign
type string
return VitalSign
        public VitalSign getVitalSign(string type)
        {
            if (theSigns != null && theSigns.ContainsKey(type))
            {
                return (VitalSign)theSigns[type];
            }
            return null;
        }