public async Task <IActionResult> Index() { var CurrentUser = await _userManager.GetUserAsync(User); if (await _claimCheck.CheckClaim(CurrentUser, "ApplicationRight", this.ControllerContext.RouteData.Values["controller"].ToString() + "\\" + this.ControllerContext.RouteData.Values["action"].ToString())) { var properties = await _propertyProvider.IndexGet(CurrentUser.Id); return(Ok(properties)); } return(BadRequest(new { IsSuccess = false, Message = "No rights", })); }