Esempio n. 1
0
        public async Task <IActionResult> PutCategory(int id, Category category)
        {
            if (id != category.Id)
            {
                return(BadRequest());
            }

            _context.Entry(category).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!CategoryExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }
        public async Task <IActionResult> PutArticle(int id, Article article)
        {
            var firstArticle = _context.Article.Find(id);

            firstArticle.Title          = article.Title;
            firstArticle.ContentMain    = article.ContentMain;
            firstArticle.ContentSummary = article.ContentSummary;
            firstArticle.CategoryId     = article.Category.Id;
            firstArticle.Picture        = article.Picture;

            _context.Entry(firstArticle).State = EntityState.Modified;

            try {
                await _context.SaveChangesAsync();
            } catch (DbUpdateConcurrencyException) {
                if (!ArticleExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }