public void ValidateCreditRules(List <FonacotMovement> lstObjectsToValidate)
        {
            var employeeConceptsRelationValidator = new EmployeeConceptsRelationValidator();

            employeeConceptsRelationValidator.AfterUpdateCreateOrigin(lstObjectsToValidate.Select(p => p.EmployeeConceptsRelation));
        }
        public void ValidateCreditRules(IEnumerable <InfonavitMovement> lstObjectsToValidate)
        {
            var employeeConceptsRelationValidator = new EmployeeConceptsRelationValidator();

            employeeConceptsRelationValidator.AfterUpdateCreateOrigin(lstObjectsToValidate.Select(p => p.EmployeeConceptsRelation), false);
        }