Ejemplo n.º 1
0
        public async Task <bool> CheckForVerificationCode(int tenderId, string verificationCodeString, int typeId)
        {
            int userId = _httpContextAccessor.HttpContext.User.UserId();
            await _tenderQueries.FindVerificationCode(userId, typeId);

            await _verification.CheckForVerificationCode(tenderId, verificationCodeString, typeId);

            return(true);
        }