Esempio n. 1
0
        public ActionResult GetSearchedProfileList(int id, int genderId, string searchText)
        {
            var response = _userService.GetSearchedProfileList(id, genderId, searchText);

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