Ejemplo n.º 1
0
        public async Task <IActionResult> CreatePark(Parky park)
        {
            // TODO rewrite using DTOs
            await _repository.CreatePark(park);

            _repository.Save();

            return(Created("GetPark", park));
        }