public ActionResult <List <RoomDto> > GetRooms()
 {
     return(_service.GetRooms().Select(room => (RoomDto)room).ToList());
 }