Exemplo n.º 1
0
        public ActionResult GetSelectedTable(int id)
        {
            ReservationVIewModel model = ReservationRepo.GetByTable(id);

            return(Json(new
            {
                success = model.id == 0 ? false : true,
                entity = model
            }, JsonRequestBehavior.AllowGet));
        }
Exemplo n.º 2
0
 public ActionResult GetByTable(int id)
 {
     return(PartialView("_GetByTable", ReservationRepo.GetByTable(id)));
 }