示例#1
0
 private RedListCalculator GetRedListCalculator(Boolean refresh)
 {
     if (_redListCalculator.IsNull() || refresh)
     {
         _redListCalculator = new RedListCalculator(null, null);
     }
     return(_redListCalculator);
 }
        private RedListCalculator GetRedListCalculator(Boolean refresh = false)
        {
            if (_redListCalculator.IsNull() || refresh)
            {
                _redListCalculator = new RedListCalculator(GetUserContext(), null, null);
            }

            return(_redListCalculator);
        }