public async Task <ActionResult <OutbackScope> > GetById(int id) { var scope = await _scopeService.GetClient(id); if (scope == default) { return(NotFound()); } return(scope); }