private static bool ShouldShowLoadErrorMessage(LoadMultipleStudiesException exception)
        {
            if (exception.IncompleteCount > 0)
            {
                return(true);
            }

            if (exception.NotFoundCount > 0)
            {
                return(true);
            }

            if (exception.UnknownFailureCount > 0)
            {
                return(true);
            }

            return(false);
        }
示例#2
0
		private static bool ShouldShowLoadErrorMessage(LoadMultipleStudiesException exception)
		{
			if (exception.IncompleteCount > 0)
				return true;

			if (exception.NotFoundCount > 0)
				return true;

			if (exception.UnknownFailureCount > 0)
				return true;

			return false;
		}