public async Task <IActionResult> CreateApiScope([FromBody] ApiScopeEditDto dto)
 {
     return(Json(await _apiScopeService.CreateApiScope(dto)));
 }