public ActionResult AddRoom()
 {
     try
     {
         ViewBag.roomTypes = new SelectList(_hotelReservationService.LoadAllRoomType(), "Id", "Name");
         return(View());
     }
     catch (Exception)
     {
         throw;
     }
 }