Пример #1
0
        public async Task <IActionResult> ShowInterest(string userName)
        {
            if (ModelState.IsValid)
            {
                var showInteres = await companyProfileApplicationService.ShowInterest(userName);

                return(Json(showInteres));
            }

            return(Json(false));
        }