Пример #1
0
        public async Task <IActionResult> ApiScopePropertyDelete(int id)
        {
            if (id == 0)
            {
                return(NotFound());
            }

            var apiScopeProperty = await _apiScopeService.GetApiScopePropertyAsync(id);

            return(View(nameof(ApiScopePropertyDelete), apiScopeProperty));
        }