예제 #1
0
        public async Task <IActionResult> GetInterestShortListed(int userId, int interestUserId)
        {
            var response = await _userService.GetInterestShortListed(userId, interestUserId);

            return(Ok(APIResponse.CreateResponse(_jwtAuthentication.Value, _httpContextAccessor.HttpContext.Request, response)));
        }