public ActionResult Index()
 {
     RoomRepository repo = new RoomRepository();
     ViewBag.Rooms = repo.SelectLimit(3);
     return View();
 }