Example #1
0
        public void AddCharacteristic(long _ID, ExposureType _expType, double _tiv)
        {
            RITCharacteristic Char = new RITCharacteristic(_ID, _expType, _tiv);

            RiskCharacteristics.Add(Char);
            Char.ParentRITE = this;
        }
Example #2
0
 public double GetTIV(long RITCharID)
 {
     return(RiskCharacteristics.Where(ritChar => ritChar.ID == RITCharID).FirstOrDefault().TIV);
 }
Example #3
0
 public void AddCharacteristic(RITCharacteristic Char)
 {
     RiskCharacteristics.Add(Char);
     Char.ParentRITE = this;
 }