public async Task <ActionResult <ChambreModel> > PostChambre(ChambreModel chambre)
        {
            _context.Chambres.Add(chambre);
            await _context.SaveChangesAsync();

            return(CreatedAtAction("GetChambre", new { id = chambre.ChNum }, chambre));
        }
        public async Task <IActionResult> PutChambre(int id, ChambreModel chambre)
        {
            if (id != chambre.ChNum)
            {
                return(BadRequest());
            }

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

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

            return(NoContent());
        }