public async Task <IActionResult> PutIngredienteProducto(Guid id, IngredienteProducto ingredienteProducto)
        {
            if (id != ingredienteProducto.Id)
            {
                return(BadRequest());
            }

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

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

            return(NoContent());
        }
        public async Task <ActionResult <IngredienteProducto> > PostIngredienteProducto(IngredienteProducto ingredienteProducto)
        {
            _context.IngredienteProducto.Add(ingredienteProducto);
            await _context.SaveChangesAsync();

            return(CreatedAtAction("GetIngredienteProducto", new { id = ingredienteProducto.Id }, ingredienteProducto));
        }