Ejemplo n.º 1
0
        public ActionResult <Point> CreatePoints([FromBody] Point[] points)
        {
            pointService.AddRange(points);

            return(CreatedAtAction(nameof(GetPoints), points));
        }