public async Task <IActionResult> PutProductColor(int id, ProductColor productColor) { if (id != productColor.Id) { return(BadRequest()); } ProductColorValid valid = new ProductColorValid(_context, productColor); if (valid.Valid() == false) { return(BadRequest("Данное косметическое средство в этом цвете уже существует")); } _context.Entry(productColor).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductColorExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <ActionResult <ProductColor> > PostProductColor(ProductColor productColor) { ProductColorValid valid = new ProductColorValid(_context, productColor); if (valid.Valid() == false) { return(BadRequest("Данное косметическое средство в этом цвете уже существует")); } _context.ProductColors.Add(productColor); await _context.SaveChangesAsync(); return(CreatedAtAction("GetProductColor", new { id = productColor.Id }, productColor)); }