public async Task <IActionResult> PutReciclaje([FromRoute] int id, [FromBody] Reciclaje reciclaje)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            if (id != reciclaje.Id)
            {
                return(BadRequest());
            }

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

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

            return(NoContent());
        }
        public async Task <IActionResult> PostReciclaje([FromBody] Reciclaje reciclaje)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            _context.Reciclaje.Add(reciclaje);
            await _context.SaveChangesAsync();

            return(CreatedAtAction("GetReciclaje", new { id = reciclaje.Id }, reciclaje));
        }