Ejemplo n.º 1
0
        public ActionResult <School> Post(School school)
        {
            var newSchool = _services.AddSchool(school);

            if (newSchool == null)
            {
                return(NotFound("Error, when adding data !!!"));
            }

            return(Ok(newSchool));
        }