Exemplo n.º 1
0
        public IActionResult UpdateTitle(Title model)
        {
            if (ModelState.IsValid)
            {
                _titleService.UpdateModel(model);

                return(Ok(model));
            }

            return(BadRequest(ModelState));
        }