Exemple #1
0
        public async Task <IActionResult> Get(int id)
        {
            var shape = await _shapeService.Get(id);

            return(Ok(ShapeViewModel.GetFromShape.Invoke(shape)));
        }