Beispiel #1
0
        public async Task <ActionResult <OutbackScope> > GetById(int id)
        {
            var scope = await _scopeService.GetClient(id);

            if (scope == default)
            {
                return(NotFound());
            }

            return(scope);
        }