Exemplo n.º 1
0
        public async Task <IActionResult> PutAsync(int id, [FromBody] MovieModel value)
        {
            var changedResult = await _service.ChangeAsync(value);

            if (!changedResult)
            {
                return(StatusCode((int)HttpStatusCode.InternalServerError, "Failed to insert entity."));
            }

            return(Ok());
        }