コード例 #1
0
        /// <summary>
        /// Check Scientific column exist or not
        /// </summary>
        /// <returns>Failure Result or Success result</returns>
        public dlxValidationResult ValidateQCReport()
        {
            var result = _repository.IsQCScientificTextExists();

            if (result)
            {
                return(dlxValidationResult.FailureResult("There are scientific numbers detected for vendor id in uploaded file. Please correct it to number format and reprocess the file."));
            }

            return(dlxValidationResult.SuccessResult);
        }