public ActionResult <string> AddHotelCommand([FromBody] Hotel hotel) { var result = HotelHelper.AddHotel(hotel).ToString(); ProjectionHelper.ProjectRooms(); return(result); }