Exemplo n.º 1
0
        public ActionResult DeletePlan(int id, int mid)
        {
            AgencyPlanViewModel model = new AgencyPlanViewModel();

            if (id > 0)
            {
                model.DeleteAgencyPlan(id);
            }

            return(PartialView("_AgencyPlanSchedule", model.GetPlan(mid)));
        }
Exemplo n.º 2
0
        public ActionResult RefreshPlan(int id)
        {
            AgencyPlanViewModel model = new AgencyPlanViewModel();

            return(PartialView("_AgencyPlanSchedule", model.GetPlan(id)));
        }