public ActionResult DeletePropertyHold(int id, int covId) { PropertyScheduleHoldViewModel model = new PropertyScheduleHoldViewModel(); model.PropertyScheduleHoldDelete(id); return(PartialView("~/Views/MemberCov/_PropertyScheduleHoldGrid.cshtml", model.GetAllPropertyScheduleHold(covId))); }
public ActionResult RefreshPropertyHold(int id) { PropertyScheduleHoldViewModel model = new PropertyScheduleHoldViewModel(); return(PartialView("~/Views/MemberCov/_PropertyScheduleHoldGrid.cshtml", model.GetAllPropertyScheduleHold(id))); }