コード例 #1
0
        public async Task <IActionResult> NotInterested(string userName)
        {
            if (ModelState.IsValid)
            {
                await companyProfileApplicationService.RemoveInterest(userName);

                return(Json(true));
            }

            return(Json(false));
        }