public CostOfAttendance GetCostOfAttendance(EducationLevel educationLevel, HousingOption housingOption)
 {
     CostOfAttendanceKey key = new CostOfAttendanceKey(educationLevel, housingOption);
     return _constants.ContainsKey(key) ? _constants[key] : null;
 }
Exemplo n.º 2
0
        public CostOfAttendance GetCostOfAttendance(EducationLevel educationLevel, HousingOption housingOption)
        {
            CostOfAttendanceKey key = new CostOfAttendanceKey(educationLevel, housingOption);

            return(_constants.ContainsKey(key) ? _constants[key] : null);
        }